From bf460827f2112eb76e1e43530d7efbdaede71e69 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Mon, 19 Dec 2022 22:44:54 +0000 Subject: WTRAPPED is now supported by waitid(2) Don't test waitid(WUNTRACED) as that's not portable and only 'works' due to an implementation decision --- src/regress/lib/libc/sys/t_wait_noproc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libc/sys/t_wait_noproc.c b/src/regress/lib/libc/sys/t_wait_noproc.c index e5137a3ea9..8d408041c5 100644 --- a/src/regress/lib/libc/sys/t_wait_noproc.c +++ b/src/regress/lib/libc/sys/t_wait_noproc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t_wait_noproc.c,v 1.3 2022/10/26 23:18:01 kettenis Exp $ */ +/* $OpenBSD: t_wait_noproc.c,v 1.4 2022/12/19 22:44:54 guenther Exp $ */ /* $NetBSD: t_wait_noproc.c,v 1.5 2016/11/09 17:50:19 kamil Exp $ */ /*- @@ -145,11 +145,11 @@ get_options6(size_t pos) const int matrix[] = { WNOWAIT, // First in order to blacklist it easily WEXITED, +#ifndef __OpenBSD__ WUNTRACED, +#endif WSTOPPED, // SUS compatibility, equal to WUNTRACED -#ifndef __OpenBSD__ WTRAPPED, -#endif WCONTINUED }; -- cgit v1.2.3-55-g6feb