From: Stefano Lattarini Date: Wed, 22 May 2013 08:56:07 +0000 (+0200) Subject: tests: two minor fixups X-Git-Tag: v1.13.2b~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e958709f467eb459c83f9e92fb8bfceca94b5c21;p=thirdparty%2Fautomake.git tests: two minor fixups * t/make-keepgoing.tap: Here. * t/parallel-tests-exit-statuses.sh: And here. Signed-off-by: Stefano Lattarini --- diff --git a/t/make-keepgoing.tap b/t/make-keepgoing.tap index f9db028a6..a595eebb3 100644 --- a/t/make-keepgoing.tap +++ b/t/make-keepgoing.tap @@ -85,7 +85,7 @@ check_make k-n # Test against a possible regressions similar to those that affected # detection of dry mode ("make -n"). check_make k-n TESTS="k.test k2.test" -check_make k-n TESTS="k1 k k2" AM_MAKEFLAGS="TESTS='k1 k2'" +check_make k-n TESTS="k1 k2" AM_MAKEFLAGS="TESTS='k1 k2'" check_make k-n TESTS="k1 k k2" AM_MAKEFLAGS='TESTS="k1 k k2"' check_make k-n FOOFLAGS="-k -k -nkf2 k -ks --keep -k" check_make k-n MYFLAGS="-k --keepgoing -k --keep-run -k" diff --git a/t/parallel-tests-exit-statuses.sh b/t/parallel-tests-exit-statuses.sh index 8612004d6..a2d181c2d 100644 --- a/t/parallel-tests-exit-statuses.sh +++ b/t/parallel-tests-exit-statuses.sh @@ -67,10 +67,6 @@ $AUTOMAKE -a sed 's/^FAIL:/XFAIL:/' exp-0 | LC_ALL=C sort > exp-1 sed '/^ERROR:/d' exp-1 > exp-2 -sort exp-0 -sort exp-1 -sort exp-2 - ./configure mk_ () @@ -81,6 +77,8 @@ mk_ () cat stdout cat test-suite.log LC_ALL=C grep '^[A-Z][A-Z]*:' stdout | LC_ALL=C sort > got-$n + cat exp-$n + cat got-$n diff exp-$n got-$n }