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 /hl | |
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 'hl')
-rwxr-xr-x | hl/Makefile.in | 2 | ||||
-rw-r--r-- | hl/c++/Makefile.in | 2 | ||||
-rw-r--r-- | hl/c++/src/Makefile.in | 2 | ||||
-rw-r--r-- | hl/c++/test/Makefile.in | 2 | ||||
-rw-r--r-- | hl/fortran/Makefile.in | 2 | ||||
-rw-r--r-- | hl/fortran/src/Makefile.in | 2 | ||||
-rw-r--r-- | hl/fortran/test/Makefile.in | 2 | ||||
-rw-r--r-- | hl/src/Makefile.in | 2 | ||||
-rw-r--r-- | hl/test/Makefile.in | 2 | ||||
-rw-r--r-- | hl/tools/gif2h5/Makefile.in | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/hl/Makefile.in b/hl/Makefile.in index 133c86b..1988b8e 100755 --- a/hl/Makefile.in +++ b/hl/Makefile.in @@ -798,7 +798,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/hl/c++/Makefile.in b/hl/c++/Makefile.in index 84686e3..035cdc9 100644 --- a/hl/c++/Makefile.in +++ b/hl/c++/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 \ diff --git a/hl/c++/src/Makefile.in b/hl/c++/src/Makefile.in index ad5a075..261cbaa 100644 --- a/hl/c++/src/Makefile.in +++ b/hl/c++/src/Makefile.in @@ -811,7 +811,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/hl/c++/test/Makefile.in b/hl/c++/test/Makefile.in index 140a638..1a917d6 100644 --- a/hl/c++/test/Makefile.in +++ b/hl/c++/test/Makefile.in @@ -761,7 +761,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/hl/fortran/Makefile.in b/hl/fortran/Makefile.in index 1a44392..418eb4c 100644 --- a/hl/fortran/Makefile.in +++ b/hl/fortran/Makefile.in @@ -796,7 +796,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/hl/fortran/src/Makefile.in b/hl/fortran/src/Makefile.in index 4991ee8..f2d67f9 100644 --- a/hl/fortran/src/Makefile.in +++ b/hl/fortran/src/Makefile.in @@ -845,7 +845,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/hl/fortran/test/Makefile.in b/hl/fortran/test/Makefile.in index 6a82649..979c77a 100644 --- a/hl/fortran/test/Makefile.in +++ b/hl/fortran/test/Makefile.in @@ -764,7 +764,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/hl/src/Makefile.in b/hl/src/Makefile.in index 9576f68..43cdf28 100644 --- a/hl/src/Makefile.in +++ b/hl/src/Makefile.in @@ -811,7 +811,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/hl/test/Makefile.in b/hl/test/Makefile.in index f108098..c0b158c 100644 --- a/hl/test/Makefile.in +++ b/hl/test/Makefile.in @@ -796,7 +796,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/hl/tools/gif2h5/Makefile.in b/hl/tools/gif2h5/Makefile.in index ce7a02d..e8b76a1 100644 --- a/hl/tools/gif2h5/Makefile.in +++ b/hl/tools/gif2h5/Makefile.in @@ -795,7 +795,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 \ |