From 7a05f6e2f16b080d9c4c05902bc802a806aeafc9 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Wed, 14 Mar 2001 17:50:44 -0500 Subject: [svn-r3635] Purpose: Improve C++ API test output appearance Description: The C++ API tests are not easy to be spotted because their output look similar to part of the C tests. Solution: Added "C++ API:" in front of the C++ test titles. Platforms tested: arabica (sparc-sun-solaris 2.7) --- c++/config/conclude.in | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/c++/config/conclude.in b/c++/config/conclude.in index 46ef19a..997ae26 100644 --- a/c++/config/conclude.in +++ b/c++/config/conclude.in @@ -25,27 +25,29 @@ tests: $(TEST_PROGS) $(LIB) check test _test: tests @for test in $(TEST_PROGS) dummy; do \ if test $$test != dummy; then \ - echo "============================"; \ - echo "Testing $$test $(TEST_FLAGS)"; \ - echo "============================"; \ + echo ""; \ + echo "====================================="; \ + echo "C++ API: Testing $$test $(TEST_FLAGS)"; \ + echo "====================================="; \ + echo ""; \ srcdir="$(srcdir)" \ ./$$test $(TEST_FLAGS) || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ break; \ - echo ""; \ fi; \ done; \ test $$test = dummy || false @for test in $(TEST_SCRIPTS) dummy; do \ if test $$test != dummy; then \ - echo "============================"; \ - echo "Testing $$test $(TEST_FLAGS)"; \ - echo "============================"; \ + echo ""; \ + echo "====================================="; \ + echo "C++ API: Testing $$test $(TEST_FLAGS)"; \ + echo "====================================="; \ + echo ""; \ srcdir="$(srcdir)" \ /bin/sh $$test $(TEST_FLAGS) || \ (test $$HDF5_Make_Ignore && echo "*** Error ignored") || \ break; \ - echo ""; \ fi; \ done; \ test $$test = dummy || false -- cgit v0.12