diff options
author | marc <> | 2002-01-03 19:17:24 +0000 |
---|---|---|
committer | marc <> | 2002-01-03 19:17:24 +0000 |
commit | 7dc54dc36ba7aa6962798fabe4ffbe053024877a (patch) | |
tree | c63c8ddd10c6eaee98c6df244d700a53b9178205 /src | |
parent | 250feea02b871a4ce407e9501d6af1648d869dd1 (diff) | |
download | openbsd-7dc54dc36ba7aa6962798fabe4ffbe053024877a.tar.gz openbsd-7dc54dc36ba7aa6962798fabe4ffbe053024877a.tar.bz2 openbsd-7dc54dc36ba7aa6962798fabe4ffbe053024877a.zip |
sigret-normal, sigret-indirect, and sigret-altstack tests
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libc/sigreturn/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/regress/lib/libc/sigreturn/Makefile b/src/regress/lib/libc/sigreturn/Makefile index 3212ec4635..3e8e2c0b41 100644 --- a/src/regress/lib/libc/sigreturn/Makefile +++ b/src/regress/lib/libc/sigreturn/Makefile | |||
@@ -1,7 +1,18 @@ | |||
1 | # $OpenBSD: Makefile,v 1.2 2002/01/01 23:00:51 art Exp $ | 1 | # $OpenBSD: Makefile,v 1.3 2002/01/03 19:17:24 marc Exp $ |
2 | 2 | ||
3 | PROG= sigret | 3 | PROG= sigret |
4 | 4 | ||
5 | DEBUG+= -ggdb | 5 | DEBUG+= -ggdb |
6 | 6 | ||
7 | REGRESSTARGETS+= sigret-normal sigret-indirect sigret-altstack | ||
8 | |||
9 | sigret-normal: | ||
10 | ./${PROG} | ||
11 | |||
12 | sigret-indirect: ${PROG} | ||
13 | ./${PROG} -i | ||
14 | |||
15 | sigret-altstack: ${PROG} | ||
16 | ./${PROG} -a | ||
17 | |||
7 | .include <bsd.regress.mk> | 18 | .include <bsd.regress.mk> |