diff options
Diffstat (limited to '')
-rw-r--r-- | src/regress/lib/libc/sys/Makefile | 8 |
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 | |||
66 | PROGS += t_syscall | 66 | PROGS += t_syscall |
67 | PROGS += t_truncate | 67 | PROGS += t_truncate |
68 | PROGS += t_umask t_unlink | 68 | PROGS += t_umask t_unlink |
69 | PROGS += t_vfork | ||
69 | PROGS += t_wait_noproc | 70 | PROGS += t_wait_noproc |
70 | PROGS += t_wait_noproc_wnohang | 71 | PROGS += t_wait_noproc_wnohang |
71 | PROGS += t_write | 72 | PROGS += t_write |
@@ -78,6 +79,11 @@ REGRESS_EXPECTED_FAILURES += run-t_pipe2-2 | |||
78 | REGRESS_EXPECTED_FAILURES += run-t_stat-5 | 79 | REGRESS_EXPECTED_FAILURES += run-t_stat-5 |
79 | REGRESS_EXPECTED_FAILURES += run-t_unlink-2 | 80 | REGRESS_EXPECTED_FAILURES += run-t_unlink-2 |
80 | 81 | ||
82 | run-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} |
82 | SRCS_$p = $p.c atf-c.c | 88 | SRCS_$p = $p.c atf-c.c |
83 | . endfor | 89 | . endfor |