Temporarily skip flakey test case

sys.kern.ptrace_test.ptrace__follow_fork_parent_detached_unrelated_debugger

PR:		239425
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2019-07-24 17:41:40 +00:00
parent 532bc58628
commit 1ab93d1f23
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350295

View File

@ -936,6 +936,8 @@ ATF_TC_BODY(ptrace__follow_fork_parent_detached_unrelated_debugger, tc)
pid_t children[2], fpid, wpid;
int cpipe[2], status;
atf_tc_skip("https://bugs.freebsd.org/239425");
ATF_REQUIRE(pipe(cpipe) == 0);
ATF_REQUIRE((fpid = fork()) != -1);
if (fpid == 0) {