summaryrefslogtreecommitdiff
path: root/t/fn99.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/fn99.sh')
-rwxr-xr-xt/fn99.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/fn99.sh b/t/fn99.sh
index db7f3234c..f1351bba4 100755
--- a/t/fn99.sh
+++ b/t/fn99.sh
@@ -16,7 +16,7 @@
# Check the filename-length-max=99 option.
-. ./defs || Exit 1
+. ./defs || exit 1
echo AC_OUTPUT >> configure.ac
@@ -26,7 +26,7 @@ EXTRA_DIST = 12345678
END
(for i in 1 2 3 4 5 6 7 8 9; do
- mkdir -p 12345678 && cd 12345678 && touch x || Exit 1
+ mkdir -p 12345678 && cd 12345678 && touch x || exit 1
done) || skip_ "failed to create deep directory hierarchy"
# AIX 5.3 'cp -R' is too buggy for 'make dist'.
@@ -40,10 +40,10 @@ $AUTOMAKE
$MAKE distcheck
(for i in 1 2 3 4 5 6 7 8 9 10 11; do
- mkdir -p 12345678 && cd 12345678 && touch x || Exit 1
+ mkdir -p 12345678 && cd 12345678 && touch x || exit 1
done) || skip_ "failed to create deeper directory hierarchy"
-$MAKE dist 2>stderr && { cat stderr >&2; Exit 1; }
+$MAKE dist 2>stderr && { cat stderr >&2; exit 1; }
cat stderr >&2
grep 'filenames are too long' stderr
test 2 -eq $(grep -c 12345678 stderr)