Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tests/lib/libc/sys All tests in t_wait now pass
details: https://anonhg.NetBSD.org/src/rev/1727179a9280
branches: trunk
changeset: 348761:1727179a9280
user: kamil <kamil%NetBSD.org@localhost>
date: Sun Nov 06 02:28:57 2016 +0000
description:
All tests in t_wait now pass
Christos Zoulas committed fixes to src/sys/sys/wait.h r.1.32.
Closes PR standards/51603
Sponsored by <The NetBSD Foundation>
diffstat:
tests/lib/libc/sys/t_wait.c | 16 ++--------------
1 files changed, 2 insertions(+), 14 deletions(-)
diffs (44 lines):
diff -r 1111fe902fa0 -r 1727179a9280 tests/lib/libc/sys/t_wait.c
--- a/tests/lib/libc/sys/t_wait.c Sun Nov 06 02:27:34 2016 +0000
+++ b/tests/lib/libc/sys/t_wait.c Sun Nov 06 02:28:57 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_wait.c,v 1.5 2016/11/05 21:49:28 kamil Exp $ */
+/* $NetBSD: t_wait.c,v 1.6 2016/11/06 02:28:57 kamil Exp $ */
/*-
* Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_wait.c,v 1.5 2016/11/05 21:49:28 kamil Exp $");
+__RCSID("$NetBSD: t_wait.c,v 1.6 2016/11/06 02:28:57 kamil Exp $");
#include <sys/wait.h>
#include <sys/resource.h>
@@ -194,12 +194,6 @@
pid_t pid;
static const struct rlimit rl = { 0, 0 };
- /*
- * WIFCONTINUED()==true always implies WIFSTOPPED()==true in the
- * current implementation
- */
- atf_tc_expect_fail("PR standards/51603");
-
ATF_REQUIRE(setrlimit(RLIMIT_CORE, &rl) == 0);
switch (pid = fork()) {
case 0:
@@ -266,12 +260,6 @@
static const struct rlimit rl = { 0, 0 };
size_t N = 100;
- /*
- * WIFCONTINUED()==true always implies WIFSTOPPED()==true in the
- * current implementation
- */
- atf_tc_expect_fail("PR standards/51603");
-
ATF_REQUIRE(setrlimit(RLIMIT_CORE, &rl) == 0);
switch (pid = fork()) {
case 0:
Home |
Main Index |
Thread Index |
Old Index