+2011-08-04 Stefano Lattarini <stefano.lattarini@gmail.com>
+
+ testsuite: fix a spurious failure
+ * tests/parallel-tests-ext-driver.test: Exporting of environment
+ variables directly from $(LOG_COMPILER) variables is not allowed
+ anymore. Adjust to this.
+
2011-08-04 Stefano Lattarini <stefano.lattarini@gmail.com>
testsuite: yet more use of TAP, and related extensions
TEST_EXTENSIONS = .chk .test .t
-CHK_LOG_COMPILER = CHK=ok; export CHK; ./chk-driver
-TEST_LOG_COMPILER = CHK=ok $(SHELL) $(srcdir)/test-driver
+CHK_LOG_COMPILER = ./chk-driver
+TEST_LOG_COMPILER = $(SHELL) $(srcdir)/test-driver
T_LOG_COMPILER = @acsubst_driver@
LOG_COMPILER = @SHELL@ -x $(srcdir)/noext-driver
EXTRA_DIST = $(TESTS) chk-driver test-driver noext-driver
END
-unset CHK || :
-
mkdir sub
cat > chk-driver <<'END'
echo "$0: invalid command line: $*" >&2
exit 1
}
-test x"$CHK" = x"ok" || {
- echo "$0: bad \$CHK value '$CHK'" >&2
- exit 1
-}
shift
exec "$@"
exit 127
echo "$0: invalid command line: $*" >&2
exit 1
fi
-if test x${CHK+"set"} = x"set"; then
- echo "$0: $CHK is set in the environment" >&2
- exit 1
-fi
shift; shift
exec "$@"
exit 127