Module Name:    src
Committed By:   kamil
Date:           Wed Dec 27 13:38:51 UTC 2017

Modified Files:
        src/tests/lib/libc/sys: t_ptrace_wait.c

Log Message:
atf: ptrace: Temporarily disable signal3 as it breaks now on some ports

This test is marked as failing with: PR kern/51918.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/tests/lib/libc/sys/t_ptrace_wait.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/lib/libc/sys/t_ptrace_wait.c
diff -u src/tests/lib/libc/sys/t_ptrace_wait.c:1.19 src/tests/lib/libc/sys/t_ptrace_wait.c:1.20
--- src/tests/lib/libc/sys/t_ptrace_wait.c:1.19	Mon Dec 25 12:38:01 2017
+++ src/tests/lib/libc/sys/t_ptrace_wait.c	Wed Dec 27 13:38:51 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_ptrace_wait.c,v 1.19 2017/12/25 12:38:01 kamil Exp $	*/
+/*	$NetBSD: t_ptrace_wait.c,v 1.20 2017/12/27 13:38:51 kamil Exp $	*/
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_ptrace_wait.c,v 1.19 2017/12/25 12:38:01 kamil Exp $");
+__RCSID("$NetBSD: t_ptrace_wait.c,v 1.20 2017/12/27 13:38:51 kamil Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -5770,6 +5770,11 @@ ATF_TC_BODY(signal3, tc)
 #endif
 	sigset_t intmask;
 
+	atf_tc_expect_fail("PR kern/51918");
+
+	// This test breaks now on some ports, temporarily disable it
+	ATF_REQUIRE(0 && "In order to get reliable failure, abort");
+
 #if defined(__sparc__)
 	atf_tc_expect_timeout("PR kern/52167");
 

Reply via email to