2001-01-21 Kevin Ryde <user42@zip.com.au>
authorTom Tromey <tromey@redhat.com>
Sun, 21 Jan 2001 21:12:09 +0000 (21:12 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 21 Jan 2001 21:12:09 +0000 (21:12 +0000)
* colon7.test: Grep for a couple of AC_OUTPUT problems.

tests/ChangeLog
tests/colon7.test

index 128030e..26ad9cb 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-21  Kevin Ryde <user42@zip.com.au>
+
+       * colon7.test: Grep for a couple of AC_OUTPUT problems.
+
 2001-01-15  Tom Tromey  <tromey@redhat.com>
 
        * subdir3.test: Allow any number of dependencies.
index 7215285..a491dcd 100755 (executable)
@@ -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