summaryrefslogtreecommitdiff
path: root/t/parallel-tests-exit-statuses.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/parallel-tests-exit-statuses.sh')
-rwxr-xr-xt/parallel-tests-exit-statuses.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/parallel-tests-exit-statuses.sh b/t/parallel-tests-exit-statuses.sh
index 8d8e6a972..bd5bb7685 100755
--- a/t/parallel-tests-exit-statuses.sh
+++ b/t/parallel-tests-exit-statuses.sh
@@ -17,7 +17,7 @@
# Check parallel-tests features: normal and special exit statuses
# in the test scripts.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_OUTPUT
@@ -77,7 +77,7 @@ st=1
$MAKE check >stdout && st=0
cat stdout
cat test-suite.log
-test $st -gt 0 || Exit 1
+test $st -gt 0 || exit 1
LC_ALL=C grep '^[A-Z][A-Z]*:' stdout | LC_ALL=C sort > got-fail
diff exp-fail got-fail
@@ -85,7 +85,7 @@ st=1
XFAIL_TESTS="$failure_statuses 99" $MAKE -e check >stdout && st=0
cat stdout
cat test-suite.log
-test $st -gt 0 || Exit 1
+test $st -gt 0 || exit 1
LC_ALL=C grep '^[A-Z][A-Z]*:' stdout | LC_ALL=C sort > got-xfail-1
diff exp-xfail-1 got-xfail-1
@@ -94,7 +94,7 @@ XFAIL_TESTS="$failure_statuses" TESTS="0 77 $failure_statuses" \
$MAKE -e check >stdout || st=$?
cat stdout
cat test-suite.log
-test $st -eq 0 || Exit 1
+test $st -eq 0 || exit 1
LC_ALL=C grep '^[A-Z][A-Z]*:' stdout | LC_ALL=C sort > got-xfail-2
diff exp-xfail-2 got-xfail-2