diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-28 13:27:49 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-28 13:37:53 +0200 |
commit | b21d68690612214d8edd810acf11880c3c0ad586 (patch) | |
tree | 7506c8901d7d16c4a5603a11e567b9e6315c9e9d /t/check-tests-in-builddir.sh | |
parent | da9ad6fafeaf5dfa710a1a2b4176d1a049fddf13 (diff) | |
parent | d25fac43a7c239fe8f56b2ce1b87ef3e3d4d7ef0 (diff) | |
download | automake-b21d68690612214d8edd810acf11880c3c0ad586.tar.gz |
Merge branch 'maint'
* maint:
tests: simpler workaround for shells losing the exit status in exit trap
+ Extra non-trivial edits:
* Several tests: Adjusted to use 'exit' rather than 'Exit'.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/check-tests-in-builddir.sh')
-rwxr-xr-x | t/check-tests-in-builddir.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/t/check-tests-in-builddir.sh b/t/check-tests-in-builddir.sh index 5b3cb222c..6785877c8 100755 --- a/t/check-tests-in-builddir.sh +++ b/t/check-tests-in-builddir.sh @@ -18,7 +18,7 @@ # well as in builddir, and that is prefers those in the builddir. # For gen-testsuite-part: ==> try-with-serial-tests <== -. ./defs || Exit 1 +. ./defs || exit 1 cat >> configure.ac << 'END' AC_OUTPUT @@ -52,28 +52,28 @@ exit 0 END chmod a+x bar.test -$MAKE check >out 2>&1 || { cat out; Exit1; } +$MAKE check >out 2>&1 || { cat out; exit 1; } cat out # The serial test driver does not strip VPATH components from # the name of the test, but the parallel driver should. if test x"$am_serial_tests" = x"yes"; then grep '^PASS: .*foo\.test *$' out else - grep '\.\./foo' out && Exit 1 + grep '\.\./foo' out && exit 1 grep '^PASS: foo\.test *$' out fi grep '^PASS: bar\.test *$' out rm -f test-suite.log foo.log bar.log -FOO_EXIT_STATUS=1 $MAKE check >out 2>&1 && { cat out; Exit1; } +FOO_EXIT_STATUS=1 $MAKE check >out 2>&1 && { cat out; exit 1; } cat out # The serial test driver does not strip VPATH components from # the name of the test, but the parallel driver should. if test x"$am_serial_tests" = x"yes"; then grep '^FAIL: .*foo\.test *$' out else - grep '\.\./foo' out && Exit 1 + grep '\.\./foo' out && exit 1 grep '^FAIL: foo\.test *$' out fi grep '^PASS: bar\.test *$' out @@ -83,7 +83,7 @@ rm -f test-suite.log foo.log bar.log # Check that if the same test is present in srcdir and builddir, # the one in builddir is preferred. cp bar.test foo.test -FOO_EXIT_STATUS=1 $MAKE check >out 2>&1 || { cat out; Exit1; } +FOO_EXIT_STATUS=1 $MAKE check >out 2>&1 || { cat out; exit 1; } cat out grep '^PASS: foo\.test *$' out grep '^PASS: bar\.test *$' out |