Temporarily skip flakey test case sys.kern.ptrace_test.ptrace__getppid

PR:		240510
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2019-09-11 16:24:03 +00:00
parent 36fd137698
commit 31e3dc2da3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352219

View File

@ -1006,6 +1006,10 @@ ATF_TC_BODY(ptrace__getppid, tc)
int cpipe[2], dpipe[2], status;
char c;
if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
atf_tc_skip("https://bugs.freebsd.org/240510");
ATF_REQUIRE(pipe(cpipe) == 0);
ATF_REQUIRE((child = fork()) != -1);