svn commit: r352219 - head/tests/sys/kern

Li-Wen Hsu lwhsu at FreeBSD.org
Wed Sep 11 16:24:04 UTC 2019


Author: lwhsu
Date: Wed Sep 11 16:24:03 2019
New Revision: 352219
URL: https://svnweb.freebsd.org/changeset/base/352219

Log:
  Temporarily skip flakey test case sys.kern.ptrace_test.ptrace__getppid
  
  PR:		240510
  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	Wed Sep 11 16:16:53 2019	(r352218)
+++ head/tests/sys/kern/ptrace_test.c	Wed Sep 11 16:24:03 2019	(r352219)
@@ -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);
 


More information about the svn-src-head mailing list