From 2c48c89a4746b70cf418c1035a0499f0576755e7 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 28 Oct 2003 12:58:09 -0500 Subject: [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: --- config/conclude.in | 24 +++++++++++++++++++++--- 1 file 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)" \ -- cgit v0.12