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~102 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=9e7eb540ba1a4df76716052731117310c2a20312;p=automake.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 128030e4..26ad9cb8 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 72152853..a491dcdc 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