diff options
author | 2002-09-03 15:29:33 +0000 | |
---|---|---|
committer | 2002-09-03 15:29:33 +0000 | |
commit | 1534b9e121ddc2eb27465fc759a7fbd36908bb3a (patch) | |
tree | 5d2bc2856d90ded3a355eac3b54bc2972d616cce | |
parent | those targets are all phony (diff) | |
download | wireguard-openbsd-1534b9e121ddc2eb27465fc759a7fbd36908bb3a.tar.xz wireguard-openbsd-1534b9e121ddc2eb27465fc759a7fbd36908bb3a.zip |
suffix the tests to see what is happenning indeed
-rw-r--r-- | regress/sys/kern/noexec/noexec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/sys/kern/noexec/noexec.c b/regress/sys/kern/noexec/noexec.c index a4041729582..6c2173b26cd 100644 --- a/regress/sys/kern/noexec/noexec.c +++ b/regress/sys/kern/noexec/noexec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: noexec.c,v 1.1 2002/08/31 22:56:01 mickey Exp $ */ +/* $OpenBSD: noexec.c,v 1.2 2002/09/03 15:29:33 mickey Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff @@ -179,9 +179,11 @@ main(int argc, char *argv[]) break; case 'm': func = &noexec_mmap; + strcat(label, "-mmap"); break; case 'p': func = &noexec_mprotect; + strcat(label, "-mprotect"); break; default: usage(); |