diff options
author | Tom Tromey <tromey@redhat.com> | 2001-08-03 18:40:44 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2001-08-03 18:40:44 +0000 |
commit | 147889176b14014c60aacdc68a55d69a4a87659b (patch) | |
tree | e403830a3084f1bef8a088aa4660ac0246d5200a | |
parent | 5cc47615a2f128034e767f9f62bb2e3ab2f2103e (diff) | |
download | automake-147889176b14014c60aacdc68a55d69a4a87659b.tar.gz |
* tests/substref.test: Handle entering/leaving directory
messages.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tests/substref.test | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-08-03 Tom Tromey <tromey@redhat.com> + + * tests/substref.test: Handle entering/leaving directory + messages. + 2001-08-03 Richard Boulton <richard@tartarus.org> * automake.in (value_to_list): Check for whether $from is defined, diff --git a/tests/substref.test b/tests/substref.test index 750a40408..4495ce89b 100755 --- a/tests/substref.test +++ b/tests/substref.test @@ -41,6 +41,7 @@ $AUTOMAKE -a CC='gcc' ./configure -val=`$MAKE echorule`; +# Grep away the entering/leaving directory messages. +val=`$MAKE echorule | fgrep -v 'ing dir'`; echo $val test "x$val" = "xdlmain.c dlmain.o" |