Module Name: src Committed By: jruoho Date: Wed May 16 13:54:28 UTC 2012
Modified Files: src/tests/lib/libc/sys: t_pipe2.c Log Message: Remove also redundant comment (the reference to the PR is already in the metadata). To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/tests/lib/libc/sys/t_pipe2.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_pipe2.c diff -u src/tests/lib/libc/sys/t_pipe2.c:1.7 src/tests/lib/libc/sys/t_pipe2.c:1.8 --- src/tests/lib/libc/sys/t_pipe2.c:1.7 Wed May 16 13:48:35 2012 +++ src/tests/lib/libc/sys/t_pipe2.c Wed May 16 13:54:28 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: t_pipe2.c,v 1.7 2012/05/16 13:48:35 martin Exp $ */ +/* $NetBSD: t_pipe2.c,v 1.8 2012/05/16 13:54:28 jruoho Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -36,7 +36,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ #include <sys/cdefs.h> -__RCSID("$NetBSD: t_pipe2.c,v 1.7 2012/05/16 13:48:35 martin Exp $"); +__RCSID("$NetBSD: t_pipe2.c,v 1.8 2012/05/16 13:54:28 jruoho Exp $"); #include <atf-c.h> #include <fcntl.h> @@ -125,9 +125,6 @@ ATF_TC_BODY(pipe2_consume, tc) err = setrlimit(RLIMIT_NOFILE, &rl); ATF_REQUIRE(err == 0); - /* - * atf_tc_skip("The test case causes a panic (PR kern/46457)"); - */ err = pipe2(filedes, O_CLOEXEC); ATF_REQUIRE(err == -1); }