diff options
Diffstat (limited to 'tests/fortdep.test')
-rwxr-xr-x | tests/fortdep.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/fortdep.test b/tests/fortdep.test index 2012029ce..e16089561 100755 --- a/tests/fortdep.test +++ b/tests/fortdep.test @@ -17,7 +17,7 @@ # Test to make sure dependency tracking doesn't interfere with Fortran. # For PR 75. -. ./defs || exit 1 +. ./defs || Exit 1 cat > configure.in << 'END' AC_INIT(foo, 1.0, martin@tropos.de) @@ -35,8 +35,8 @@ END : > foo.f -$ACLOCAL || exit 1 -$AUTOMAKE || exit 1 +$ACLOCAL || Exit 1 +$AUTOMAKE || Exit 1 -grep 'foo\.Po' Makefile.in && exit 1 -exit 0 +grep 'foo\.Po' Makefile.in && Exit 1 +Exit 0 |