summaryrefslogtreecommitdiff
path: root/tests/suffix7.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/suffix7.test')
-rwxr-xr-xtests/suffix7.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/suffix7.test b/tests/suffix7.test
index 805489eae..22f3874d7 100755
--- a/tests/suffix7.test
+++ b/tests/suffix7.test
@@ -17,7 +17,7 @@
# Test to make sure Automake supports implicit rules "confusing"
# extensions. Inspired by a mail from Alex Hornby.
-. ./defs || exit 1
+. ./defs || Exit 1
cat > Makefile.am << 'END'
SUFFIXES = .idl S.cpp C.h
@@ -28,12 +28,12 @@ END
: > fooa
-$ACLOCAL || exit 1
-$AUTOMAKE || exit 1
+$ACLOCAL || Exit 1
+$AUTOMAKE || Exit 1
# Make sure Automake has NOT recognized .cpp and .idlC as two new
# extensions.
-grep 'SUFFIXES.* \.cpp' Makefile.in && exit 1
-grep 'SUFFIXES.* \.idlC' Makefile.in && exit 1
+grep 'SUFFIXES.* \.cpp' Makefile.in && Exit 1
+grep 'SUFFIXES.* \.idlC' Makefile.in && Exit 1
-exit 0
+Exit 0