diff options
Diffstat (limited to 'fortran/config/conclude.in')
-rw-r--r-- | fortran/config/conclude.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fortran/config/conclude.in b/fortran/config/conclude.in index 3e79bfa..2de796f 100644 --- a/fortran/config/conclude.in +++ b/fortran/config/conclude.in @@ -46,7 +46,7 @@ _check-s: tests echo "Testing $$test $(TEST_FLAGS)"; \ echo "============================"; \ srcdir="$(srcdir)" \ - $(RUNTEST) ./$$test $(TEST_FLAGS) || \ + $(TIME) $(RUNTEST) ./$$test $(TEST_FLAGS) || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ break; \ echo ""; \ @@ -60,7 +60,7 @@ _check-s: tests echo "============================"; \ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ srcdir="$(srcdir)" \ - /bin/sh $$test $(TEST_FLAGS) || \ + $(TIME) /bin/sh $$test $(TEST_FLAGS) || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ break; \ echo ""; \ @@ -86,21 +86,21 @@ _check-p: tests echo "Testing $$test $(TEST_FLAGS)"; \ echo "============================"; \ srcdir="$(srcdir)" \ - $(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \ + $(TIME) $(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ break; \ echo ""; \ fi; \ done; \ test $$test = dummy || false - @for test in $(TEST_SCRIPTS_PARA) dummy; do \ + @for test in $(TEST_SCRIPTS_PARA) dummy; do \ if test $$test != dummy; then \ echo "============================"; \ echo "Testing $$test $(TEST_FLAGS)"; \ echo "============================"; \ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ srcdir="$(srcdir)" \ - /bin/sh $$test $(TEST_FLAGS) || \ + $(TIME) /bin/sh $$test $(TEST_FLAGS) || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ break; \ echo ""; \ |