Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/syscall The PR was fixed. Remove atf_tc_skip().



details:   https://anonhg.NetBSD.org/src/rev/e725f27186c3
branches:  trunk
changeset: 766885:e725f27186c3
user:      jruoho <jruoho%NetBSD.org@localhost>
date:      Sun Jul 03 15:42:07 2011 +0000

description:
The PR was fixed. Remove atf_tc_skip().

diffstat:

 tests/syscall/t_mknod.c |  8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diffs (30 lines):

diff -r cc0244febc03 -r e725f27186c3 tests/syscall/t_mknod.c
--- a/tests/syscall/t_mknod.c   Sun Jul 03 15:34:08 2011 +0000
+++ b/tests/syscall/t_mknod.c   Sun Jul 03 15:42:07 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_mknod.c,v 1.1 2011/07/03 14:34:22 jruoho Exp $ */
+/* $NetBSD: t_mknod.c,v 1.2 2011/07/03 15:42:07 jruoho Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_mknod.c,v 1.1 2011/07/03 14:34:22 jruoho Exp $");
+__RCSID("$NetBSD: t_mknod.c,v 1.2 2011/07/03 15:42:07 jruoho Exp $");
 
 #include <sys/stat.h>
 
@@ -59,10 +59,8 @@
        ATF_REQUIRE_ERRNO(EINVAL, mknod(path, -1, 0) == -1);
 
        /*
-        * The following case triggers an assertion with tmpfs.
+        * See the old PR kern/45111.
         */
-       atf_tc_skip("the test case may cause a panic; see PR kern/45111");
-
        errno = 0;
        ATF_REQUIRE_ERRNO(EINVAL, mknod(path, S_IFCHR, -1) == -1);
 



Home | Main Index | Thread Index | Old Index