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,3 @@
int main(void) {
return 0;
}
@@ -0,0 +1,19 @@
#!/usr/bin/env python3
import os
import sys
try:
import pefile
except ImportError:
if 'CI' in os.environ:
raise
# Skip the test if not on CI
sys.exit(77)
executable = sys.argv[1]
expected = int(sys.argv[2])
actual = pefile.PE(executable).dump_dict()['OPTIONAL_HEADER']['Subsystem']['Value']
print('subsystem expected: %d, actual: %d' % (expected, actual))
sys.exit(0 if (expected == actual) else 1)
@@ -0,0 +1,11 @@
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow) {
// avoid unused argument error while matching template
((void)hInstance);
((void)hPrevInstance);
((void)lpCmdLine);
((void)nCmdShow);
return 0;
}
@@ -0,0 +1,26 @@
project('gui_app_test', 'c')
#
# test that linking a Windows console applications with the main function in a
# library is correctly instructed which entrypoint function to look for
#
console_lib = static_library('main', 'console_prog.c')
executable('console', 'dummy.c', link_with: console_lib, win_subsystem: 'console')
executable('console2', 'dummy.c', link_with: console_lib, gui_app: false)
#
# also verify that the correct subsystem is set by executable(gui_app:)
#
gui_prog = executable('gui_prog', 'gui_prog.c', win_subsystem: 'windows,6.0')
gui_prog2 = executable('gui_prog2', 'gui_prog.c', gui_app: true)
console_prog = executable('console_prog', 'console_prog.c', win_subsystem: 'console')
console_prog2 = executable('console_prog2', 'console_prog.c', gui_app: false)
tester = find_program('gui_app_tester.py')
test('is_gui', tester, args: [gui_prog, '2'])
test('is_gui2', tester, args: [gui_prog2, '2'])
test('not_gui', tester, args: [console_prog, '3'])
test('not_gui2', tester, args: [console_prog2, '3'])