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 /testpar | |
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 'testpar')
-rw-r--r-- | testpar/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in index 950524c..20f35f2 100644 --- a/testpar/Makefile.in +++ b/testpar/Makefile.in @@ -792,7 +792,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 \ |