Module Name: src
Committed By: jruoho
Date: Sun May 1 06:42:29 UTC 2011
Modified Files:
src/tests/lib/libc/gen: t_nice.c
Log Message:
PR lib/42587 was fixed; remove xfail.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/lib/libc/gen/t_nice.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/gen/t_nice.c
diff -u src/tests/lib/libc/gen/t_nice.c:1.6 src/tests/lib/libc/gen/t_nice.c:1.7
--- src/tests/lib/libc/gen/t_nice.c:1.6 Mon Apr 25 20:55:06 2011
+++ src/tests/lib/libc/gen/t_nice.c Sun May 1 06:42:29 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: t_nice.c,v 1.6 2011/04/25 20:55:06 njoly Exp $ */
+/* $NetBSD: t_nice.c,v 1.7 2011/05/01 06:42:29 jruoho Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_nice.c,v 1.6 2011/04/25 20:55:06 njoly Exp $");
+__RCSID("$NetBSD: t_nice.c,v 1.7 2011/05/01 06:42:29 jruoho Exp $");
#include <sys/resource.h>
#include <sys/wait.h>
@@ -74,11 +74,9 @@
/*
* The call should fail with EPERM if the
* supplied parameter is negative and the
- * caller does not have privileges. Note
- * that the errno is thus "wrong" in NetBSD.
+ * caller does not have privileges; see
+ * the closed PR lib/42587.
*/
- atf_tc_expect_fail("PR lib/42587");
-
for (i = -20; i < 0; i++) {
errno = 0;