diff options
author | mbuhl <mbuhl@cvs.openbsd.org> | 2021-09-04 07:06:59 +0000 |
---|---|---|
committer | mbuhl <mbuhl@cvs.openbsd.org> | 2021-09-04 07:06:59 +0000 |
commit | e2a751fac8163c0693f859b74513896666a2ddb3 (patch) | |
tree | 9396875706e62c01b53085ad95956f06c931a853 /regress/lib/libc | |
parent | 5c8cb3205eaee2926e22e49b7bb4a06e6f3a605f (diff) |
Disable tests that don't work in bluhms regress framework.
Diffstat (limited to 'regress/lib/libc')
-rw-r--r-- | regress/lib/libc/sys/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/regress/lib/libc/sys/Makefile b/regress/lib/libc/sys/Makefile index 0bc8822c2ab..2073cadf56c 100644 --- a/regress/lib/libc/sys/Makefile +++ b/regress/lib/libc/sys/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2021/09/02 15:28:41 mbuhl Exp $ +# $OpenBSD: Makefile,v 1.13 2021/09/04 07:06:58 mbuhl Exp $ # Copyright (c) 2019 Moritz Buhl <openbsd@moritzbuhl.de> # Copyright (c) 2019 Alexander Bluhm <bluhm@openbsd.org> @@ -79,6 +79,12 @@ REGRESS_EXPECTED_FAILURES += run-t_pipe2-2 REGRESS_EXPECTED_FAILURES += run-t_stat-5 REGRESS_EXPECTED_FAILURES += run-t_unlink-2 +. for t in run-t_fork-{3,4,5} +${t}: + # Only works with a controlling tty + @echo DISABLED +. endfor + run-t_vfork-2: # SIGSTOP with vfork is masked before exec(3)/exit(3) # see NetBSD: kern_sig.c,v 1.345 |