summaryrefslogtreecommitdiff
path: root/t/test-driver-acsubst.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/test-driver-acsubst.sh')
-rwxr-xr-xt/test-driver-acsubst.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/test-driver-acsubst.sh b/t/test-driver-acsubst.sh
index e384ac792..501fcc9b7 100755
--- a/t/test-driver-acsubst.sh
+++ b/t/test-driver-acsubst.sh
@@ -17,7 +17,7 @@
# parallel-tests:
# - LOG_DRIVER variables can be AC_SUBST'd
-. ./defs || Exit 1
+. ./defs || exit 1
mkdir test-drivers
@@ -59,7 +59,7 @@ $AUTOCONF
cat > foo <<'END'
#!/bin/sh
echo "PASS: from $0"
-exit 1 # Exit status should be ignored by the trivial-test-driver.
+exit 1 # exit status should be ignored by the trivial-test-driver.
END
cat > bar.test <<'END'
@@ -81,7 +81,7 @@ cat test-suite.log
cat foo.log
cat bar.log
cat baz.log
-test $st -eq 0 || Exit 1
+test $st -eq 0 || exit 1
count_test_results total=3 pass=1 fail=0 skip=1 xfail=1 xpass=0 error=0
: