summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpvalchev <pvalchev@openbsd.org>2003-07-17 19:14:43 +0000
committerpvalchev <pvalchev@openbsd.org>2003-07-17 19:14:43 +0000
commit1fa1379931bfe3b149297d27083bc902a4f701da (patch)
tree0101c067267cd37cfec5393f818fec9e377e84d6
parenttest grep -C (diff)
downloadwireguard-openbsd-1fa1379931bfe3b149297d27083bc902a4f701da.tar.xz
wireguard-openbsd-1fa1379931bfe3b149297d27083bc902a4f701da.zip
test -f
-rw-r--r--regress/usr.bin/grep/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/regress/usr.bin/grep/Makefile b/regress/usr.bin/grep/Makefile
index d776e04ad5d..b0bc5762f4b 100644
--- a/regress/usr.bin/grep/Makefile
+++ b/regress/usr.bin/grep/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.3 2003/07/17 19:07:10 pvalchev Exp $
+# $OpenBSD: Makefile,v 1.4 2003/07/17 19:14:43 pvalchev Exp $
-REGRESS_TARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11
+REGRESS_TARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12
t1:
grep t.s ${.CURDIR}/in | diff - ${.CURDIR}/t1.out
@@ -35,6 +35,9 @@ t10:
t11:
grep -C1 examples ${.CURDIR}/in | diff - ${.CURDIR}/t11.out
-.PHONY: t1 t2 t3 t4 t5 t6 t7 t8 t9 t10
+t12:
+ egrep -f ${.CURDIR}/t1.out ${.CURDIR}/in | diff - ${.CURDIR}/t1.out
+
+.PHONY: t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12
.include <bsd.regress.mk>