diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-12-05 13:43:18 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-12-05 13:43:18 +0000 |
commit | c068975ce58223759df9e1a77b5a8509c665c18c (patch) | |
tree | a51945fe13d88420dd654bde001dec8f1c12d837 /regress | |
parent | 2502dc4f233b5402bd7ec436da6c0687db19a257 (diff) |
enable 'self' tests; ok henning@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/sbin/pfctl/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/regress/sbin/pfctl/Makefile b/regress/sbin/pfctl/Makefile index fafb977383e..f6a330a70ef 100644 --- a/regress/sbin/pfctl/Makefile +++ b/regress/sbin/pfctl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.48 2002/12/04 11:35:41 henning Exp $ +# $OpenBSD: Makefile,v 1.49 2002/12/05 13:43:17 markus Exp $ PFTESTS=1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 PFTESTS+=28 29 30 31 32 33 34 35 36 37 38 39 @@ -23,19 +23,17 @@ pf${n}: pfctl -nv -f - < ${.CURDIR}/pf${n}.in | \ diff -u ${.CURDIR}/pf${n}.ok /dev/stdin -#REGRESS_TARGETS+=selfpf${n} +REGRESS_TARGETS+=selfpf${n} selfpf${n}: if pfctl -nv -f - < ${.CURDIR}/pf${n}.in | \ sed 's/^@[^ ]* //' |\ - pfctl -nvf - > /dev/null ; then \ + pfctl -nvf - > /dev/null; then \ true ; \ else \ pfctl -nv -f - < ${.CURDIR}/pf${n}.in; \ - false ; \ + false; \ fi -self: selfpf${n} - .endfor .for n in ${PFSIMPLE} |