summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-10-28 17:58:09 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-10-28 17:58:09 (GMT)
commit2c48c89a4746b70cf418c1035a0499f0576755e7 (patch)
treec63834e096fcde2f3b736a60201e6bc43f55eaab /config
parent87d9d6bbff0648caf2b24115fa9f3f713cb0037a (diff)
downloadhdf5-2c48c89a4746b70cf418c1035a0499f0576755e7.zip
hdf5-2c48c89a4746b70cf418c1035a0499f0576755e7.tar.gz
hdf5-2c48c89a4746b70cf418c1035a0499f0576755e7.tar.bz2
[svn-r7771] Purpose:
Update Description: Changed the line saying something like: Testing FOO to Fortran API: Testing FOO and C++ API: Testing FOO when appropriate. Platforms tested: Verbena, Arabica, Modi4 Misc. update:
Diffstat (limited to 'config')
-rw-r--r--config/conclude.in24
1 files changed, 21 insertions, 3 deletions
diff --git a/config/conclude.in b/config/conclude.in
index 8f14856..5ab9a1b 100644
--- a/config/conclude.in
+++ b/config/conclude.in
@@ -46,7 +46,13 @@ check test _test: tests
@for test in $(TEST_PROGS) dummy; do \
if test $$test != dummy; then \
echo "============================"; \
- echo "Testing $$test $(TEST_FLAGS)"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
echo "============================"; \
srcdir="$(srcdir)" \
$(RUNTEST) ./$$test $(TEST_FLAGS) || \
@@ -69,7 +75,13 @@ check test _test: tests
@for test in $(TEST_PROGS_PARA) dummy; do \
if test $$test != dummy; then \
echo "============================"; \
- echo "Testing $$test $(TEST_FLAGS)"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
echo "============================"; \
srcdir="$(srcdir)" \
$(RUNPARALLEL) ./$$test $(TEST_FLAGS) || \
@@ -82,7 +94,13 @@ check test _test: tests
@for test in $(TEST_SCRIPTS) dummy; do \
if test $$test != dummy; then \
echo "============================"; \
- echo "Testing $$test $(TEST_FLAGS)"; \
+ if test "X$(HDF_FORTRAN)" = "Xyes"; then \
+ echo "Fortran API: Testing $$test $(TEST_FLAGS)"; \
+ elif test "X$(HDF_CXX)" = "Xyes"; then \
+ echo "C++ API: Testing $$test $(TEST_FLAGS)"; \
+ else \
+ echo "Testing $$test $(TEST_FLAGS)"; \
+ fi; \
echo "============================"; \
RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \
srcdir="$(srcdir)" \