]> xenbits.xensource.com Git - freebsd.git/commitdiff
Temporarily skip flakey test case sys.kern.ptrace_test.ptrace__getppid
authorlwhsu <lwhsu@FreeBSD.org>
Wed, 11 Sep 2019 16:24:03 +0000 (16:24 +0000)
committerlwhsu <lwhsu@FreeBSD.org>
Wed, 11 Sep 2019 16:24:03 +0000 (16:24 +0000)
PR: 240510
Sponsored by: The FreeBSD Foundation

tests/sys/kern/ptrace_test.c

index 6ac3ed6243bb968960d884ddf7043a72af9fc1a3..49d753c850e58380bfb06d39c081fc487bc5ee1a 100644 (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);