Handle freezing tests. Fixes #10752.
parent
e5ce7f0770
commit
3ae89a7150
4 changed files with 36 additions and 3 deletions
@ -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) |
Loading…
Reference in new issue