fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
project('testprovider','c')
|
||||
|
||||
deplib = dependency('libtestprovider', static:true)
|
||||
|
||||
dprovidertest = executable('dprovidertest',
|
||||
files('./receiver.c'),
|
||||
dependencies:[deplib],
|
||||
c_args:['-Wall','-Werror'],
|
||||
)
|
||||
|
||||
test('testprovider',dprovidertest)
|
||||
@@ -0,0 +1,18 @@
|
||||
#include <stdio.h>
|
||||
int __attribute__((weak)) get_checked(void) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
#define CHECK_VALUE (100)
|
||||
#define TEST_SUCCESS (0)
|
||||
#define TEST_FAILURE (-1)
|
||||
|
||||
int main(void) {
|
||||
if (get_checked() == CHECK_VALUE) {
|
||||
fprintf(stdout,"good\n");
|
||||
return TEST_SUCCESS;
|
||||
}
|
||||
fprintf(stdout,"bad\n");
|
||||
return TEST_FAILURE;
|
||||
}
|
||||
Reference in New Issue
Block a user