fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,2 @@
CONFIG_IS_SET=y
# CONFIG_NOT_IS_SET is not set
@@ -0,0 +1,12 @@
k = import('keyval')
conf = k.load(files('config'))
if not conf.has_key('CONFIG_IS_SET')
error('Expected CONFIG_IS_SET to be set, but it wasn\'t')
endif
if conf.has_key('CONFIG_NOT_IS_SET')
error('Expected CONFIG_NOT_IS_SET not be set, but it was')
endif
@@ -0,0 +1,4 @@
project('keyval subdir test')
# Test into sub directory
subdir('dir')