summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorPeter Valchev <pvalchev@cvs.openbsd.org>2003-07-17 19:14:44 +0000
committerPeter Valchev <pvalchev@cvs.openbsd.org>2003-07-17 19:14:44 +0000
commitf2373e2196abfdbd8f1c02b8f0a77702c0ea9e1b (patch)
tree83a63ab9d50df9f240b903b45f30580eda7001ae /regress
parentf168550d6e01cb9713dcead32c1d81a1b37c0a09 (diff)
test -f
Diffstat (limited to 'regress')
-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>