Module Name:    src
Committed By:   christos
Date:           Thu Dec 28 18:41:34 UTC 2017

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

Log Message:
mips panic should be fixed on head.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 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.21 src/tests/lib/libc/sys/t_ptrace_wait.c:1.22
--- src/tests/lib/libc/sys/t_ptrace_wait.c:1.21	Thu Dec 28 04:47:52 2017
+++ src/tests/lib/libc/sys/t_ptrace_wait.c	Thu Dec 28 13:41:33 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_ptrace_wait.c,v 1.21 2017/12/28 09:47:52 kamil Exp $	*/
+/*	$NetBSD: t_ptrace_wait.c,v 1.22 2017/12/28 18:41:33 christos Exp $	*/
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_ptrace_wait.c,v 1.21 2017/12/28 09:47:52 kamil Exp $");
+__RCSID("$NetBSD: t_ptrace_wait.c,v 1.22 2017/12/28 18:41:33 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -4311,17 +4311,6 @@ ATF_TC_BODY(fpregs1, tc)
 #endif
 	struct fpreg r;
 
-	/* pmax kernel 8.99.9 panics */
-	char *machine;
-	size_t mlen;
-	machine = asysctlbyname("hw.machine", &mlen);
-	ATF_REQUIRE(machine);
-	if (strcmp(machine, "pmax") == 0) {
-		atf_tc_expect_fail("PR port-pmax/52871");
-		ATF_REQUIRE(0 && "In order to get reliable failure, abort");
-	}
-	free(machine);
-
 	DPRINTF("Before forking process PID=%d\n", getpid());
 	SYSCALL_REQUIRE((child = fork()) != -1);
 	if (child == 0) {
@@ -4377,17 +4366,6 @@ ATF_TC_BODY(fpregs2, tc)
 #endif
 	struct fpreg r;
 
-	/* pmax kernel 8.99.9 panics */
-	char *machine;
-	size_t mlen;
-	machine = asysctlbyname("hw.machine", &mlen);
-	ATF_REQUIRE(machine);
-	if (strcmp(machine, "pmax") == 0) {
-		atf_tc_expect_fail("PR port-pmax/52871");
-		ATF_REQUIRE(0 && "In order to get reliable failure, abort");
-	}
-	free(machine);
-
 	DPRINTF("Before forking process PID=%d\n", getpid());
 	SYSCALL_REQUIRE((child = fork()) != -1);
 	if (child == 0) {

Reply via email to