From: Tom Tromey Date: Sun, 21 Jan 2001 21:12:09 +0000 (+0000) Subject: 2001-01-21 Kevin Ryde X-Git-Tag: Release-1-4d~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=351be4970246c312b6c6ff1587ebd56ffd1d1fe7;p=thirdparty%2Fautomake.git 2001-01-21 Kevin Ryde * colon7.test: Grep for a couple of AC_OUTPUT problems. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 128030e49..26ad9cb8c 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2001-01-21 Kevin Ryde + + * colon7.test: Grep for a couple of AC_OUTPUT problems. + 2001-01-15 Tom Tromey * subdir3.test: Allow any number of dependencies. diff --git a/tests/colon7.test b/tests/colon7.test index 72152853a..a491dcdcf 100755 --- a/tests/colon7.test +++ b/tests/colon7.test @@ -24,4 +24,12 @@ mkdir subdir : > subdir/Makefile.am : > subdir/foo -$AUTOMAKE +$AUTOMAKE || exit 1 + +# shouldn't have any bar.in +grep 'bar.in' subdir/Makefile.in && exit 1 + +# DIST_COMMON should have foo, not subdir/foo +grep 'DIST_COMMON.*subdir/foo' subdir/Makefile.in && exit 1 + +exit 0