summaryrefslogtreecommitdiff
path: root/src/regress/lib/libc/sys/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/regress/lib/libc/sys/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libc/sys/Makefile b/src/regress/lib/libc/sys/Makefile
index acb5c89896..0bc8822c2a 100644
--- a/src/regress/lib/libc/sys/Makefile
+++ b/src/regress/lib/libc/sys/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.11 2021/09/02 12:40:44 mbuhl Exp $ 1# $OpenBSD: Makefile,v 1.12 2021/09/02 15:28:41 mbuhl Exp $
2 2
3# Copyright (c) 2019 Moritz Buhl <openbsd@moritzbuhl.de> 3# Copyright (c) 2019 Moritz Buhl <openbsd@moritzbuhl.de>
4# Copyright (c) 2019 Alexander Bluhm <bluhm@openbsd.org> 4# Copyright (c) 2019 Alexander Bluhm <bluhm@openbsd.org>
@@ -66,6 +66,7 @@ PROGS += t_stat
66PROGS += t_syscall 66PROGS += t_syscall
67PROGS += t_truncate 67PROGS += t_truncate
68PROGS += t_umask t_unlink 68PROGS += t_umask t_unlink
69PROGS += t_vfork
69PROGS += t_wait_noproc 70PROGS += t_wait_noproc
70PROGS += t_wait_noproc_wnohang 71PROGS += t_wait_noproc_wnohang
71PROGS += t_write 72PROGS += t_write
@@ -78,6 +79,11 @@ REGRESS_EXPECTED_FAILURES += run-t_pipe2-2
78REGRESS_EXPECTED_FAILURES += run-t_stat-5 79REGRESS_EXPECTED_FAILURES += run-t_stat-5
79REGRESS_EXPECTED_FAILURES += run-t_unlink-2 80REGRESS_EXPECTED_FAILURES += run-t_unlink-2
80 81
82run-t_vfork-2:
83 # SIGSTOP with vfork is masked before exec(3)/exit(3)
84 # see NetBSD: kern_sig.c,v 1.345
85 @echo DISABLED
86
81. for p in ${PROGS} 87. for p in ${PROGS}
82SRCS_$p = $p.c atf-c.c 88SRCS_$p = $p.c atf-c.c
83. endfor 89. endfor