diff options
author | Tom Tromey <tromey@redhat.com> | 1997-05-11 00:32:21 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-05-11 00:32:21 +0000 |
commit | 76f845e0b206c7ae242b2aae92e41cec9d88fb10 (patch) | |
tree | 668d470bab6ecc54aeeffd186df70cf49885324c | |
parent | f71784f6b58bd3730de1dddc70098e786c1f146c (diff) | |
download | automake-Release-1-1p.tar.gz |
fixed testRelease-1-1p
-rw-r--r-- | tests/ChangeLog | 4 | ||||
-rwxr-xr-x | tests/depend2.test | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index c9c4a4a0e..5ca38b051 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +Sat May 10 18:28:14 1997 Tom Tromey <tromey@cygnus.com> + + * depend2.test: Fixed test; added another check. + Sun May 4 15:47:24 1997 Tom Tromey <tromey@cygnus.com> * xsource.test: New file. diff --git a/tests/depend2.test b/tests/depend2.test index be1716a50..7f08c65a2 100755 --- a/tests/depend2.test +++ b/tests/depend2.test @@ -61,9 +61,11 @@ END mkdir outdir -$AUTOMAKE --include-deps --build-dir=`pwd`/build --srcdir-name=.. \ - --output-dir=`pwd`/outdir || exit 1 +$AUTOMAKE --include-deps --build-dir=`pwd`/build --srcdir-name=../.. \ + --output-dir=`pwd`/outdir src/Makefile || exit 1 # The buggy output contains this string. fgrep '../../lib/filetypes.h' outdir/src/Makefile.in && exit 1 -exit 0 + +# Also make sure that filetypes.h is mentioned at all. +fgrep filetypes.h outdir/src/Makefile.in |