svn commit: r357782 - head/tests/sys/kern
Li-Wen Hsu
lwhsu at FreeBSD.org
Tue Feb 11 23:17:59 UTC 2020
Author: lwhsu
Date: Tue Feb 11 23:17:58 2020
New Revision: 357782
URL: https://svnweb.freebsd.org/changeset/base/357782
Log:
Temporarily skip flakey test case sys.kern.ptrace_test.ptrace__parent_exits_before_child
PR: 244056
Sponsored by: The FreeBSD Foundation
Modified:
head/tests/sys/kern/ptrace_test.c
Modified: head/tests/sys/kern/ptrace_test.c
==============================================================================
--- head/tests/sys/kern/ptrace_test.c Tue Feb 11 22:48:12 2020 (r357781)
+++ head/tests/sys/kern/ptrace_test.c Tue Feb 11 23:17:58 2020 (r357782)
@@ -469,6 +469,9 @@ ATF_TC_BODY(ptrace__parent_exits_before_child, tc)
int cpipe1[2], cpipe2[2], gcpipe[2], status;
pid_t child, gchild;
+ if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+ atf_tc_skip("https://bugs.freebsd.org/244056");
+
ATF_REQUIRE(pipe(cpipe1) == 0);
ATF_REQUIRE(pipe(cpipe2) == 0);
ATF_REQUIRE(pipe(gcpipe) == 0);
More information about the svn-src-head
mailing list