summaryrefslogtreecommitdiff
path: root/t/test-driver-strip-vpath.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/test-driver-strip-vpath.sh')
-rw-r--r--t/test-driver-strip-vpath.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/t/test-driver-strip-vpath.sh b/t/test-driver-strip-vpath.sh
index b3a456521..1793dd141 100644
--- a/t/test-driver-strip-vpath.sh
+++ b/t/test-driver-strip-vpath.sh
@@ -38,9 +38,10 @@ cat > Makefile.am << 'END'
# The $(empty) are for eliciting VPATH rewrites on make implementations
# that support it (e.g., Solaris make), to improve coverage.
empty =
-TESTS = $(empty) foo.test src/bar.test ./src/baz.test $(empty)
+TESTS = $(empty) foo.test src/bar.test ./src/baz $(empty)
$(TESTS):
-TEST_LOG_DRIVER = $(srcdir)/checkstrip-driver
+LOG_DRIVER = $(srcdir)/checkstrip-driver
+TEST_LOG_DRIVER = $(LOG_DRIVER)
EXTRA_DIST = checkstrip-driver
END
@@ -60,8 +61,10 @@ while test $# -gt 0; do
done
echo "test name: $test_name" # For debugging.
case $test_name in
- foo.test|./foo.test|src/ba[rz].test|./src/ba[rz].test);;
- *) exit 1;;
+ foo.test|./foo.test) ;;
+ src/bar.test|./src/bar.test) ;;
+ src/baz|./src/baz) ;;
+ *) exit 1 ;;
esac
echo dummy > "$log_file"
echo dummy > "$trs_file"
@@ -70,7 +73,7 @@ chmod a+x checkstrip-driver
$ACLOCAL
$AUTOCONF
-$AUTOMAKE
+$AUTOMAKE -a
cd ..