diff options
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/examples/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/src/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/test/Makefile.in | 2 | ||||
-rw-r--r-- | fortran/testpar/Makefile.in | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/fortran/Makefile.in b/fortran/Makefile.in index 9abe5ad..2ef4966 100644 --- a/fortran/Makefile.in +++ b/fortran/Makefile.in @@ -812,7 +812,7 @@ build-check-p: $(LIB) $(PROGS) $(TESTS) @for test in $(TEST_PROG_PARA) dummy; do \ if test $$test != dummy; then \ $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNTESTS="$(RUNPARALLEL)"; \ + RUNTESTS="$(RUNPARALLEL)" || exit 1; \ fi; \ done @for test in $(TEST_SCRIPT_PARA) dummy; do \ diff --git a/fortran/examples/Makefile.in b/fortran/examples/Makefile.in index b30bd6e..5461ee3 100644 --- a/fortran/examples/Makefile.in +++ b/fortran/examples/Makefile.in @@ -734,7 +734,7 @@ build-check-p: $(LIB) $(PROGS) $(TESTS) @for test in $(TEST_PROG_PARA) dummy; do \ if test $$test != dummy; then \ $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNTESTS="$(RUNPARALLEL)"; \ + RUNTESTS="$(RUNPARALLEL)" || exit 1; \ fi; \ done @for test in $(TEST_SCRIPT_PARA) dummy; do \ diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index f2dea21..6f28b1c 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -1020,7 +1020,7 @@ build-check-p: $(LIB) $(PROGS) $(TESTS) @for test in $(TEST_PROG_PARA) dummy; do \ if test $$test != dummy; then \ $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNTESTS="$(RUNPARALLEL)"; \ + RUNTESTS="$(RUNPARALLEL)" || exit 1; \ fi; \ done @for test in $(TEST_SCRIPT_PARA) dummy; do \ diff --git a/fortran/test/Makefile.in b/fortran/test/Makefile.in index dd9dc33..a8c902c 100644 --- a/fortran/test/Makefile.in +++ b/fortran/test/Makefile.in @@ -959,7 +959,7 @@ build-check-p: $(LIB) $(PROGS) $(TESTS) @for test in $(TEST_PROG_PARA) dummy; do \ if test $$test != dummy; then \ $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNTESTS="$(RUNPARALLEL)"; \ + RUNTESTS="$(RUNPARALLEL)" || exit 1; \ fi; \ done @for test in $(TEST_SCRIPT_PARA) dummy; do \ diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index b74c181..4cc8b0f 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -754,7 +754,7 @@ build-check-p: $(LIB) $(PROGS) $(TESTS) @for test in $(TEST_PROG_PARA) dummy; do \ if test $$test != dummy; then \ $(MAKE) $(AM_MAKEFLAGS) $$test.chkexe_ \ - RUNTESTS="$(RUNPARALLEL)"; \ + RUNTESTS="$(RUNPARALLEL)" || exit 1; \ fi; \ done @for test in $(TEST_SCRIPT_PARA) dummy; do \ |