diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2002-01-03 19:17:25 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2002-01-03 19:17:25 +0000 |
commit | e342c1ed0511fcf707dc6d00677133727085d348 (patch) | |
tree | 48231764278636fe85eb9bdaae119893c7ffef61 | |
parent | 7649834f9008425e88167489ee86766c3dfc821f (diff) |
sigret-normal, sigret-indirect, and sigret-altstack tests
-rw-r--r-- | regress/lib/libc/sigreturn/Makefile | 13 |
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> |