diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2003-07-02 20:27:00 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2003-07-02 20:27:00 +0000 |
commit | 1cd7584dc361eae217551899d5be9aa8702441c6 (patch) | |
tree | d917a06a26059a5dc4b2f14f00a2519711b22188 /regress/usr.bin | |
parent | b3b00ea1fc697a6e1b45885607ed7c08b1d5467a (diff) |
use /dev/null
Diffstat (limited to 'regress/usr.bin')
-rw-r--r-- | regress/usr.bin/grep/Makefile | 8 | ||||
-rw-r--r-- | regress/usr.bin/grep/empty | 0 |
2 files changed, 4 insertions, 4 deletions
diff --git a/regress/usr.bin/grep/Makefile b/regress/usr.bin/grep/Makefile index f5485e6893e..52bddd44294 100644 --- a/regress/usr.bin/grep/Makefile +++ b/regress/usr.bin/grep/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2003/07/02 07:07:49 pvalchev Exp $ +# $OpenBSD: Makefile,v 1.2 2003/07/02 20:26:59 pvalchev Exp $ REGRESS_TARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 @@ -24,13 +24,13 @@ t7: grep -x line ${.CURDIR}/in | diff - ${.CURDIR}/t7.out t8: - fgrep line. ${.CURDIR}/in | diff - ${.CURDIR}/empty + fgrep line. ${.CURDIR}/in | diff - /dev/null t9: - grep non.existent ${.CURDIR}/in | diff - ${.CURDIR}/empty + grep non.existent ${.CURDIR}/in | diff - /dev/null t10: - grep -s foo nonexistentfile | diff - ${.CURDIR}/empty + grep -s foo nonexistentfile | diff - /dev/null .PHONY: t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 diff --git a/regress/usr.bin/grep/empty b/regress/usr.bin/grep/empty deleted file mode 100644 index e69de29bb2d..00000000000 --- a/regress/usr.bin/grep/empty +++ /dev/null |