1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <pthread.h>
#include <unistd.h>
static void *worker (void *dummy) __attribute__ ((__noreturn__));
static void *
worker (void *dummy)
{
exit (26);
}
#define TEST_FUNCTION do_test ()
#define TIMEOUT 10
static int
do_test (void)
{
pthread_t th;
pid_t pid;
int status;
switch ((pid = fork ()))
{
case -1:
puts ("Could not fork");
exit (1);
case 0:
if (pthread_create(&th, NULL, worker, NULL) != 0)
{
puts ("Failed to start thread");
exit (1);
}
for (;;);
exit (1);
default:
break;
}
if (waitpid (pid, &status, 0) != pid)
{
puts ("waitpid failed");
exit (1);
}
if (!WIFEXITED (status) || WEXITSTATUS (status) != 26)
{
printf ("Wrong exit code %d\n", status);
exit (1);
}
puts ("All OK");
return 0;
}
#include "../../test-skeleton.c"
|