Temporarily skip failing test case sys.kern/ptrace_test/ptrace__parent_wait_after_attach

PR:		244055
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2020-02-11 22:48:12 +00:00
parent 0c556b7f98
commit f192f64848

View File

@ -213,6 +213,9 @@ ATF_TC_BODY(ptrace__parent_wait_after_attach, tc)
int cpipe[2], status;
char c;
if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
atf_tc_skip("https://bugs.freebsd.org/244055");
ATF_REQUIRE(pipe(cpipe) == 0);
ATF_REQUIRE((child = fork()) != -1);
if (child == 0) {