diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-11-05 13:20:30 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-11-05 13:20:30 +0000 |
commit | 0c65647b86ffe1a5339c88c04714922e5185a847 (patch) | |
tree | 0a5f9b61033b14602b9ec9fef84b111b54c90155 /regress/sys/net | |
parent | 907e8031833ae6da6fc03feed7addd7d63b5017f (diff) |
Fix some comments and dependencies in this regress test.
Diffstat (limited to 'regress/sys/net')
-rw-r--r-- | regress/sys/net/pf_state/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/regress/sys/net/pf_state/Makefile b/regress/sys/net/pf_state/Makefile index 03bf03ec7d2..23e6a775229 100644 --- a/regress/sys/net/pf_state/Makefile +++ b/regress/sys/net/pf_state/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2017/07/07 23:15:27 bluhm Exp $ +# $OpenBSD: Makefile,v 1.7 2017/11/05 13:20:29 bluhm Exp $ # The following ports must be installed: # @@ -87,7 +87,7 @@ addr.py: Makefile echo 'FAKE_NET = "${FAKE_NET}"' >>$@.tmp mv $@.tmp $@ -# load the pf rules into the kernel of the REMOTE machine +# load the pf rules into the kernel of the REMOTE and LOCAL machine stamp-pfctl: addr.py pf.conf cat addr.py ${.CURDIR}/pf.conf | pfctl -n -f - cat addr.py ${.CURDIR}/pf.conf | \ @@ -106,7 +106,7 @@ PYTHON = PYTHONPATH=${.OBJDIR} python2.7 -u ${.CURDIR}/ .endif TARGETS += challenge-ack -run-regress-challenge-ack: stamp-pfctl +run-regress-challenge-ack: challenge_ack.py addr.py stamp-pfctl @echo '\n======== $@ ========' ${SUDO} ${PYTHON}challenge_ack.py @@ -115,6 +115,7 @@ TARGETS += cleanup run-regress-cleanup: @echo '\n======== $@ ========' ${SUDO} pfctl -a regress -Fr + rm -f stamp-pfctl .endif REGRESS_TARGETS = ${TARGETS:S/^/run-regress-/} |