summaryrefslogtreecommitdiff
path: root/t/objc-megademo.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/objc-megademo.sh')
-rwxr-xr-xt/objc-megademo.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/objc-megademo.sh b/t/objc-megademo.sh
index 8a26db78f..876fecbf7 100755
--- a/t/objc-megademo.sh
+++ b/t/objc-megademo.sh
@@ -18,7 +18,7 @@
required=libtoolize
am_create_testdir=empty
-. ./defs || Exit 1
+. ./defs || exit 1
## Autotools Input Files.
@@ -92,7 +92,7 @@ if $ACLOCAL; then
elif test $? -eq 63; then
skip_ "Object C++ support requires Autoconf 2.65 or later"
else
- Exit 1 # Some other aclocal failure.
+ exit 1 # Some other aclocal failure.
fi
$AUTOHEADER
$AUTOCONF
@@ -337,7 +337,7 @@ if ! cross_compiling; then
[Hello ObjC, world ObjC]
[Hello ObjC++, world ObjC++]
END
- ./play > got || { cat got; Exit 1; }
+ ./play > got || { cat got; exit 1; }
cat exp
cat got
diff exp got