summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarc <marc@openbsd.org>2002-01-03 19:17:24 +0000
committermarc <marc@openbsd.org>2002-01-03 19:17:24 +0000
commit7d1a41143c752c1618b0d333e8e522a88283f04c (patch)
tree988dfad969ae8b57d5498a49ec5a966ea9887c5e
parentmore devices from NetBSD (diff)
downloadwireguard-openbsd-7d1a41143c752c1618b0d333e8e522a88283f04c.tar.xz
wireguard-openbsd-7d1a41143c752c1618b0d333e8e522a88283f04c.zip
sigret-normal, sigret-indirect, and sigret-altstack tests
-rw-r--r--regress/lib/libc/sigreturn/Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/regress/lib/libc/sigreturn/Makefile b/regress/lib/libc/sigreturn/Makefile
index 3212ec46354..3e8e2c0b418 100644
--- a/regress/lib/libc/sigreturn/Makefile
+++ b/regress/lib/libc/sigreturn/Makefile
@@ -1,7 +1,18 @@
-# $OpenBSD: Makefile,v 1.2 2002/01/01 23:00:51 art Exp $
+# $OpenBSD: Makefile,v 1.3 2002/01/03 19:17:24 marc Exp $
PROG= sigret
DEBUG+= -ggdb
+REGRESSTARGETS+= sigret-normal sigret-indirect sigret-altstack
+
+sigret-normal:
+ ./${PROG}
+
+sigret-indirect: ${PROG}
+ ./${PROG} -i
+
+sigret-altstack: ${PROG}
+ ./${PROG} -a
+
.include <bsd.regress.mk>