summaryrefslogtreecommitdiff
path: root/t/uninstall-pr9578.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/uninstall-pr9578.sh')
-rwxr-xr-xt/uninstall-pr9578.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/uninstall-pr9578.sh b/t/uninstall-pr9578.sh
index 1be2a26f5..6d852c4f6 100755
--- a/t/uninstall-pr9578.sh
+++ b/t/uninstall-pr9578.sh
@@ -22,7 +22,7 @@
# need sister tests for other primaries too? E.g., PROGRAMS, LISP,
# PYTHON, etc...
-. ./defs || Exit 1
+. ./defs || exit 1
cat >> configure.ac << 'END'
AC_OUTPUT
@@ -48,19 +48,19 @@ test ! -d inst
rm -rf inst
$MAKE install-exec
-test -f inst/bin/foo || Exit 99 # Sanity check.
+test -f inst/bin/foo || exit 99 # Sanity check.
$MAKE uninstall
test ! -f inst/bin/foo
$MAKE install-data
-test -f inst/share/bar || Exit 99 # Sanity check.
+test -f inst/share/bar || exit 99 # Sanity check.
$MAKE uninstall
test ! -f inst/share/bar
rm -rf inst
$MAKE install-exec
-test -f inst/bin/foo || Exit 99 # Sanity check.
+test -f inst/bin/foo || exit 99 # Sanity check.
$MAKE uninstall
test ! -f inst/bin/foo