summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>