diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-07-06 14:17:12 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-07-06 14:17:12 +0000 |
commit | 17996f7809342104ea52067782a99928a37b85c6 (patch) | |
tree | 6b402a6de4a41ad7b9ea7eee0b453400281e4ee3 /regress/usr.bin | |
parent | 81a15ff6f193b88fed86b0adb8f1f35a97d3dd33 (diff) |
Disable new tests until sed has been adapted.
Discussed with otto@
Diffstat (limited to 'regress/usr.bin')
-rw-r--r-- | regress/usr.bin/sed/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/regress/usr.bin/sed/Makefile b/regress/usr.bin/sed/Makefile index 074adff9a8b..47f9871f968 100644 --- a/regress/usr.bin/sed/Makefile +++ b/regress/usr.bin/sed/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2017/06/12 16:58:31 otto Exp $ +# $OpenBSD: Makefile,v 1.7 2017/07/06 14:17:11 bluhm Exp $ # $NetBSD: Makefile,v 1.1 2005/04/04 16:48:45 peter Exp $ SED?= /usr/bin/sed @@ -6,6 +6,10 @@ SED?= /usr/bin/sed REGRESS_TARGETS= sedtest substitute hanoi math sierpinski negation \ inplace inplace2 inplace3 commandl1 commandl2 commandc1 commandD1 +commandl1 commandl2 commandc1 commandD1: + # New tests, currently failing, need fixes in sed. + @echo DISABLED + sedtest: sh ${.CURDIR}/$@.sh ${SED} $@.out diff ${.CURDIR}/$@.expected $@.out @@ -60,7 +64,6 @@ commandD1: printf 'a\nbb\n' | ${SED} -f ${.CURDIR}/$@.sed > $@.out diff ${.CURDIR}/$@.expected $@.out - CLEANFILES+=*.out lines* script* *.txt .include <bsd.regress.mk> |