Correct assert in ATF t_zombie test
A failure is reported with -1, not 1. Sponsored by <The NetBSD Foundation>
This commit is contained in:
parent
8fce728dbb
commit
ed68aafd9d
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: t_zombie.c,v 1.1 2018/03/14 02:13:47 kamil Exp $ */
|
/* $NetBSD: t_zombie.c,v 1.2 2018/05/18 00:25:30 kamil Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2018 The NetBSD Foundation, Inc.
|
* Copyright (c) 2018 The NetBSD Foundation, Inc.
|
||||||
@ -29,7 +29,7 @@
|
|||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__COPYRIGHT("@(#) Copyright (c) 2018\
|
__COPYRIGHT("@(#) Copyright (c) 2018\
|
||||||
The NetBSD Foundation, inc. All rights reserved.");
|
The NetBSD Foundation, inc. All rights reserved.");
|
||||||
__RCSID("$NetBSD: t_zombie.c,v 1.1 2018/03/14 02:13:47 kamil Exp $");
|
__RCSID("$NetBSD: t_zombie.c,v 1.2 2018/05/18 00:25:30 kamil Exp $");
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
@ -130,14 +130,14 @@ signal_raw(int sig)
|
|||||||
pid_t child1, child2, pid;
|
pid_t child1, child2, pid;
|
||||||
|
|
||||||
child1 = atf_utils_fork();
|
child1 = atf_utils_fork();
|
||||||
ATF_REQUIRE(child1 != 1);
|
ATF_REQUIRE(child1 != -1);
|
||||||
if (child1 == 0) {
|
if (child1 == 0) {
|
||||||
/* Just die and turn into a zombie */
|
/* Just die and turn into a zombie */
|
||||||
_exit(0);
|
_exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
child2 = atf_utils_fork();
|
child2 = atf_utils_fork();
|
||||||
ATF_REQUIRE(child2 != 1);
|
ATF_REQUIRE(child2 != -1);
|
||||||
if (child2 == 0) {
|
if (child2 == 0) {
|
||||||
await_zombie(child1);
|
await_zombie(child1);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user