Module Name: src Committed By: kamil Date: Wed Dec 7 22:24:44 UTC 2016
Modified Files: src/tests/kernel/arch/amd64: t_ptrace_wait.c Log Message: Stop using atf_utils_fork() in tests/kernel/arch/amd64/t_ptrace_wait.c Switch from: child = atf_utils_fork(); to: ATF_REQUIRE((child = fork()) != -1); Prefer the latter as working as intended and not outputing to files with danger to overwrite files' content after each fork in test-suite. Discussed with Christos Zoulas. Sponsored by <The NetBSD Foundation> To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tests/kernel/arch/amd64/t_ptrace_wait.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.