diff options
Diffstat (limited to 'tests/compile_f90_c_cxx.test')
-rwxr-xr-x | tests/compile_f90_c_cxx.test | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/compile_f90_c_cxx.test b/tests/compile_f90_c_cxx.test index de02f2892..312c2ef9f 100755 --- a/tests/compile_f90_c_cxx.test +++ b/tests/compile_f90_c_cxx.test @@ -18,7 +18,7 @@ # mixed source objects. # (copied from compile_f_c_cxx.test) Mike Nolta <mrnolta@princeton.edu> -. ./defs || exit 1 +. ./defs || Exit 1 cat >> configure.in << 'END' AC_PROG_CC @@ -37,14 +37,14 @@ END : > bar.c : > baz.cc -$ACLOCAL || exit 1 -$AUTOMAKE || exit 1 +$ACLOCAL || Exit 1 +$AUTOMAKE || Exit 1 # Look for the macros at the beginning of rules. Be careful, as there # are literal tabs at the beginning of the search strings. -grep ' \$(COMPILE)' Makefile.in || exit 1 -grep ' \$(CXXCOMPILE)' Makefile.in || exit 1 -grep ' \$(FCCOMPILE)' Makefile.in || exit 1 +grep ' \$(COMPILE)' Makefile.in || Exit 1 +grep ' \$(CXXCOMPILE)' Makefile.in || Exit 1 +grep ' \$(FCCOMPILE)' Makefile.in || Exit 1 -exit 0 +Exit 0 |