summaryrefslogtreecommitdiff
path: root/t/vartypos.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/vartypos.sh')
-rwxr-xr-xt/vartypos.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/vartypos.sh b/t/vartypos.sh
index c323fff52..16317fb32 100755
--- a/t/vartypos.sh
+++ b/t/vartypos.sh
@@ -16,7 +16,7 @@
# Make sure we warn about possible variable typos when we should.
-. ./defs || Exit 1
+. ./defs || exit 1
cat >>configure.ac <<'END'
AC_PROG_RANLIB
@@ -72,7 +72,7 @@ AUTOMAKE_fails -Wno-extra-portability
# Makefile.am:13: library has 'libfoo_a' as canonical name (possible typo)
grep 'as canonical' stderr | grep -v ' .foo. ' | grep -v ' .libfoo_a. ' \
- && Exit 1
+ && exit 1
test $(grep -c 'variable.*is defined but' stderr) -eq 13
# If we add a global -Wnone, all warnings should disappear.