diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-10-14 17:22:16 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-10-14 17:22:16 +0000 |
commit | a85c3fb95139b506560ccdada49e4885b28183f3 (patch) | |
tree | bb587355479dc3f0cd39467a9b09fc6448e78cbe /regress/usr.bin/m4/Makefile | |
parent | 5b12bc258fe8c9e40a38b5d45689be67d677bb9e (diff) |
Add a test for the new -P option. ok espie@
Diffstat (limited to 'regress/usr.bin/m4/Makefile')
-rw-r--r-- | regress/usr.bin/m4/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/regress/usr.bin/m4/Makefile b/regress/usr.bin/m4/Makefile index 6a0d5d64306..8c5ea31a2cb 100644 --- a/regress/usr.bin/m4/Makefile +++ b/regress/usr.bin/m4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.26 2009/06/26 08:44:07 espie Exp $ +# $OpenBSD: Makefile,v 1.27 2009/10/14 17:22:15 sthen Exp $ FIBOMAX=25 M4=m4 @@ -11,7 +11,7 @@ REGRESS_TARGETS= test-ff_after_dnl test-m4wrap test-m4wrap2 \ test-patterns trip test-strangequotes test-redef test-quotes \ test-weird test-args test-args2 test-esyscmd test-eval test-gnupatterns \ test-gnupatterns2 test-comments test-synch1 test-synch1bis \ - test-gnuformat test-includes test-dumpdef + test-gnuformat test-includes test-dumpdef test-gnuprefix test-ff_after_dnl: ff_after_dnl.m4 ${M4} ff_after_dnl.m4 | diff - ${.CURDIR}/ff_after_dnl.out @@ -95,6 +95,10 @@ test-synch1bis: test-dumpdef: ${M4} ${.CURDIR}/dumpdef.m4 2>/dev/null +test-gnuprefix: + ${M4} -P ${.CURDIR}/gnuprefix.m4 2>&1 | \ + diff -u - ${.CURDIR}/gnuprefix.out + .PHONY: ${REGRESS_TARGETS} .include <bsd.regress.mk> |