chiark / gitweb /
test: wait for cloned thread to exit
authorFilipe Brandenburger <filbranden@google.com>
Thu, 25 Dec 2014 16:40:46 +0000 (11:40 -0500)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 25 Dec 2014 16:55:12 +0000 (11:55 -0500)
commit0289a5bcb5eec84783f771e634ccafe5a2e4936c
tree0a9202591aadb6c1c7c5b55bb97cc59bbbfbc22b
parente50221bf1ae8bc8e14f242efa4c9d26b7a47639b
test: wait for cloned thread to exit

In test_raw_clone, make sure the cloned thread calls _exit() and in the parent
thread call waitpid(..., __WCLONE) to wait for the child thread to terminate,
otherwise there is a race condition where the child thread will log to the
console after the test process has already exited and the assertion from the
child thread might not be enforced.

The absence of this patch might also create problems for other tests that would
be added after this one, since potentially both parent and child would run
those tests as the child would continue running.

Tested by confirming that the logs from the child are printed before the test
terminates and that a false assertion in the child aborts the test with a core
dump.

[zj: also add check for the return value.]
src/test/test-util.c