diff options
Diffstat (limited to 'lib/mlibc/tests/posix/waitid.c')
-rw-r--r-- | lib/mlibc/tests/posix/waitid.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/mlibc/tests/posix/waitid.c b/lib/mlibc/tests/posix/waitid.c deleted file mode 100644 index e69b1ef..0000000 --- a/lib/mlibc/tests/posix/waitid.c +++ /dev/null @@ -1,20 +0,0 @@ -#include <assert.h> -#include <signal.h> -#include <stdlib.h> -#include <sys/wait.h> -#include <unistd.h> - -siginfo_t si; - -int main() { - int pid = fork(); - - if(!pid) - exit(69); - - int ret = waitid(P_ALL, 0, &si, WEXITED); - assert(ret == 0); - assert(si.si_pid == pid); - assert(si.si_signo == SIGCHLD); - assert(si.si_code == CLD_EXITED); -}
\ No newline at end of file |