summaryrefslogtreecommitdiff
path: root/t/tap-no-merge-stdout-stderr.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-no-merge-stdout-stderr.sh')
-rwxr-xr-xt/tap-no-merge-stdout-stderr.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/tap-no-merge-stdout-stderr.sh b/t/tap-no-merge-stdout-stderr.sh
index eb6b0807a..e82b26b99 100755
--- a/t/tap-no-merge-stdout-stderr.sh
+++ b/t/tap-no-merge-stdout-stderr.sh
@@ -18,7 +18,7 @@
# - By default, TAP input is only from the stdout (and not the stderr)
# of the test command.
-. ./defs || Exit 1
+. ./defs || exit 1
cat > Makefile.am << 'END'
TEST_LOG_DRIVER_FLAGS = --comments
@@ -42,11 +42,11 @@ END
chmod a+x all.test
-$MAKE check >stdout || { cat stdout; Exit 1; }
+$MAKE check >stdout || { cat stdout; exit 1; }
cat stdout
count_test_results total=2 pass=1 fail=0 xpass=0 xfail=0 skip=1 error=0
$FGREP 'foo foo foo' stdout
-$FGREP 'bar bar bar' stdout && Exit 1
+$FGREP 'bar bar bar' stdout && exit 1
: