/* Test case for assertion #1 of the WIFEXITED macro defined in sys/wait.h by forking a new process, having the process return -1, and then verifying WIFEXITED returns a non-zero value. */ #include #include #include #include #include #include "posixtest.h" int main() { if (fork() == 0) { /* child */ return -1; } else { int s; /* parent */ if (wait(&s) == -1) { perror("Unexpected error while setting up test " "pre-conditions"); return PTS_UNRESOLVED; } if (WIFEXITED(s)) { printf("Test PASSED\n"); return PTS_PASS; } } printf("Test FAILED\n"); return PTS_FAIL; }