Disable tests that don't work in bluhms regress framework.
authormbuhl <mbuhl@openbsd.org>
Sat, 4 Sep 2021 07:06:58 +0000 (07:06 +0000)
committermbuhl <mbuhl@openbsd.org>
Sat, 4 Sep 2021 07:06:58 +0000 (07:06 +0000)
regress/lib/libc/sys/Makefile

index 0bc8822..2073cad 100644 (file)
@@ -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