diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-10-27 22:30:46 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-10-27 22:30:46 (GMT) |
commit | 91cbcdf42f1222fd9d657424ae2d3af1213f22dd (patch) | |
tree | ade8474e74437d8eafa8abbd5ea46d834e62b6c1 /fortran/testpar/Makefile.in | |
parent | cef7b9f008467d0fc76bad4dbbe901a3ddf7f6d5 (diff) | |
download | hdf5-91cbcdf42f1222fd9d657424ae2d3af1213f22dd.zip hdf5-91cbcdf42f1222fd9d657424ae2d3af1213f22dd.tar.gz hdf5-91cbcdf42f1222fd9d657424ae2d3af1213f22dd.tar.bz2 |
[svn-r11612] Purpose:
Bug fix
Description:
Failed parallel tests now cause make to exit with an error.
Solution:
Edited config/conclude.am to throw an error if parallel test programs fail.
Platforms tested:
heping, modi4
Diffstat (limited to 'fortran/testpar/Makefile.in')
-rw-r--r-- | fortran/testpar/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 \ |