tests: prune some weed in a non-POSIX test
authorPeter Rosin <peda@lysator.liu.se>
Wed, 29 May 2013 15:10:40 +0000 (17:10 +0200)
committerPeter Rosin <peda@lysator.liu.se>
Wed, 29 May 2013 15:10:40 +0000 (17:10 +0200)
Fixes automake bug#14494.

* t/distcheck-pr10470.sh: Make sure the test-driver is installed. Adjust
to run_make changes. Adjust grep pattern to match new output.

Signed-off-by: Peter Rosin <peda@lysator.liu.se>
Co-authored-by: Stefano Lattarini <stefano.lattarini@gmail.com>
t/distcheck-pr10470.sh

index f6cb160..a2781df 100644 (file)
@@ -45,13 +45,13 @@ chmod a+x foo.test
 
 $ACLOCAL
 $AUTOCONF
-$AUTOMAKE
+$AUTOMAKE -a
 ./configure
 
 # We can build the distribution.
-run_make -M -e FAIL distcheck
+run_make -M distcheck
 # Sanity check: verify that our code has hit a problem removing
 # the distdir, but has recovered from it.
-grep "rm:.*$destdir" output || fatal_ "expected code path not covered"
+$EGREP "(^| )(rm|find):.*$distdir" output || fatal_ "expected code path not covered"
 
 :