mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-08-04 15:53:44 +00:00
Acked-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Adrian Reber <areber@redhat.com>
61 lines
995 B
C
61 lines
995 B
C
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
|
|
#include "zdtmtst.h"
|
|
|
|
const char *test_doc = "See if we can wait() for a child after migration";
|
|
const char *test_author = "Roman Kagan <rkagan@parallels.com>";
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int ret;
|
|
pid_t pid;
|
|
|
|
test_init(argc, argv);
|
|
|
|
pid = fork();
|
|
if (pid < 0) {
|
|
pr_perror("fork failed");
|
|
exit(1);
|
|
}
|
|
|
|
if (pid == 0) {
|
|
test_waitsig();
|
|
_exit(0);
|
|
}
|
|
|
|
test_daemon();
|
|
test_waitsig();
|
|
|
|
if (kill(pid, SIGTERM)) {
|
|
fail("terminating the child failed");
|
|
goto out;
|
|
}
|
|
|
|
if (wait(&ret) != pid) {
|
|
fail("wait() returned wrong pid");
|
|
goto out;
|
|
}
|
|
|
|
if (WIFEXITED(ret)) {
|
|
ret = WEXITSTATUS(ret);
|
|
if (ret) {
|
|
fail("child exited with nonzero code %d (%s)", ret, strerror(ret));
|
|
goto out;
|
|
}
|
|
}
|
|
if (WIFSIGNALED(ret)) {
|
|
fail("child exited on unexpected signal %d", WTERMSIG(ret));
|
|
goto out;
|
|
}
|
|
|
|
pass();
|
|
|
|
out:
|
|
return 0;
|
|
}
|