diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2020-12-16 22:59:56 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2020-12-16 22:59:56 +0000 |
commit | ae72c956001008ada248c4a336640dc328c35340 (patch) | |
tree | 116bd896121147a34682e852c7eca5102631cb73 /regress/sys/kern | |
parent | d9c39fa94dc5fc818c0325c2d8ceafeadfb5b5e1 (diff) |
Remove echo headlines. Use consistent target names.
Diffstat (limited to 'regress/sys/kern')
-rw-r--r-- | regress/sys/kern/flock/Makefile | 12 | ||||
-rw-r--r-- | regress/sys/kern/pipe/Makefile | 12 |
2 files changed, 10 insertions, 14 deletions
diff --git a/regress/sys/kern/flock/Makefile b/regress/sys/kern/flock/Makefile index 143f0044365..d0952ee8ed5 100644 --- a/regress/sys/kern/flock/Makefile +++ b/regress/sys/kern/flock/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2020/03/11 17:27:55 anton Exp $ +# $OpenBSD: Makefile,v 1.11 2020/12/16 22:59:55 bluhm Exp $ PROGS+= flock SRCS_flock= flock.c util.c @@ -10,18 +10,16 @@ WARNINGS= yes TESTS_FLOCK!= jot 24 1 .for t in ${TESTS_FLOCK} -flock-$t: flock - @echo '\n======== $@ ========' +run-flock-$t: flock ./flock ${LOCKFLAGS} $t -REGRESS_TARGETS+=flock-$t +REGRESS_TARGETS+=run-flock-$t .endfor TESTS_LOCKF!= jot 2 1 .for t in ${TESTS_LOCKF} -lockf-$t: lockf - @echo '\n======== $@ ========' +run-lockf-$t: lockf ./lockf ${LOCKFLAGS} $t -REGRESS_TARGETS+=lockf-$t +REGRESS_TARGETS+=run-lockf-$t .endfor .include <bsd.regress.mk> diff --git a/regress/sys/kern/pipe/Makefile b/regress/sys/kern/pipe/Makefile index 812b67cc755..b2ee4cfc406 100644 --- a/regress/sys/kern/pipe/Makefile +++ b/regress/sys/kern/pipe/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2020/06/29 18:25:37 anton Exp $ +# $OpenBSD: Makefile,v 1.4 2020/12/16 22:59:55 bluhm Exp $ PROG= pipe @@ -27,14 +27,12 @@ TESTS+= thundering-herd-read-wakeup TESTS+= thundering-herd-write-signal TESTS+= thundering-herd-write-wakeup -REGRESS_SETUP_ONCE= setup -setup: ${PROG} +REGRESS_SETUP= ${PROG} .for t in ${TESTS} -${t}: - @echo "\n======== ${@} ========" - ./${PROG} ${t} -REGRESS_TARGETS+= ${t} +run-$t: + ./${PROG} $t +REGRESS_TARGETS+= run-$t .endfor .include <bsd.regress.mk> |