summaryrefslogtreecommitdiff
path: root/tests/cond5.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cond5.test')
-rwxr-xr-xtests/cond5.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cond5.test b/tests/cond5.test
index 2f968bf1f..964327398 100755
--- a/tests/cond5.test
+++ b/tests/cond5.test
@@ -16,7 +16,7 @@
# Yet another sources-in-conditional test. Report from Tim Goodwin.
-. ./defs || exit 1
+. ./defs || Exit 1
cat > configure.in << 'END'
AC_INIT
@@ -43,13 +43,13 @@ END
# The bug is that automake hangs. So we give it a few seconds and
# then kill it.
-$ACLOCAL || exit 1
+$ACLOCAL || Exit 1
$AUTOMAKE &
pid=$!
sleep 60
kill -0 $pid && {
kill $pid
- exit 1
+ Exit 1
}
-exit 0
+Exit 0