diff options
Diffstat (limited to 'tests/colon2.test')
-rwxr-xr-x | tests/colon2.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/colon2.test b/tests/colon2.test index 810d38d40..b66a3166a 100755 --- a/tests/colon2.test +++ b/tests/colon2.test @@ -16,7 +16,7 @@ # Make sure ":" works with files automake generates. -. ./defs || exit 1 +. ./defs || Exit 1 cat > configure.in << 'END' AC_INIT @@ -26,10 +26,10 @@ END : > zardoz.am -$ACLOCAL || exit 1 -$AUTOMAKE || exit 1 +$ACLOCAL || Exit 1 +$AUTOMAKE || Exit 1 # We actually check several things here. -test -f zardoz.in || exit 1 -grep '^zardoz:' zardoz.in && exit 1 -exit 0 +test -f zardoz.in || Exit 1 +grep '^zardoz:' zardoz.in && Exit 1 +Exit 0 |