diff options
Diffstat (limited to 't/test-driver-custom-xfail-tests.sh')
-rwxr-xr-x | t/test-driver-custom-xfail-tests.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/test-driver-custom-xfail-tests.sh b/t/test-driver-custom-xfail-tests.sh index d8455deab..c19e69f8a 100755 --- a/t/test-driver-custom-xfail-tests.sh +++ b/t/test-driver-custom-xfail-tests.sh @@ -16,7 +16,7 @@ # Custom test drivers: "abstract" XFAIL_TESTS support. -. ./defs || Exit 1 +. ./defs || exit 1 cat >> configure.ac <<'END' AC_SUBST([nihil], []) @@ -141,7 +141,7 @@ $AUTOMAKE ./configure -$MAKE check >stdout || { cat stdout; Exit 1; } +$MAKE check >stdout || { cat stdout; exit 1; } cat stdout test $(grep -c '^PASS:' stdout) -eq 3 test $(grep -c '^XFAIL:' stdout) -eq 13 @@ -150,7 +150,7 @@ for dir in sub1 sub2; do cd $dir cp pass.test x1.test cp x2.test pass.test - $MAKE check >stdout && { cat stdout; Exit 1; } + $MAKE check >stdout && { cat stdout; exit 1; } cat stdout test "$(cat pass.trs)" = ":test-result: FAIL" test "$(cat x1.trs)" = ":test-result: XPASS" |