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 /config | |
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 'config')
-rw-r--r-- | config/conclude.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/conclude.am b/config/conclude.am index ba0aa35..7fd6737 100644 --- a/config/conclude.am +++ b/config/conclude.am @@ -190,7 +190,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 \ |