fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#include<stdio.h>
|
||||
#include <signal.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static void do_nothing(int signo, siginfo_t *info, void *context) {
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
struct sigaction sa;
|
||||
memset(&sa, 0, sizeof(struct sigaction));
|
||||
sa.sa_sigaction = do_nothing;
|
||||
if (sigaction(SIGTERM, &sa, NULL) == -1) {
|
||||
printf("Could not set up signal handler.\n");
|
||||
return 1;
|
||||
}
|
||||
printf("Freezing forever.\n");
|
||||
while(1) {
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
project('freeze', 'c')
|
||||
|
||||
e = executable('freeze', 'freeze.c')
|
||||
test('freeze', e, timeout: 1)
|
||||
Reference in New Issue
Block a user