diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-03-14 22:50:44 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-03-14 22:50:44 (GMT) |
commit | 7a05f6e2f16b080d9c4c05902bc802a806aeafc9 (patch) | |
tree | 42687d29d295ed9b989110bdd33575bf0c076b5f /c++/config | |
parent | bebae0a9e80acd49f2165d557ec4b2d7377bdcbc (diff) | |
download | hdf5-7a05f6e2f16b080d9c4c05902bc802a806aeafc9.zip hdf5-7a05f6e2f16b080d9c4c05902bc802a806aeafc9.tar.gz hdf5-7a05f6e2f16b080d9c4c05902bc802a806aeafc9.tar.bz2 |
[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)
Diffstat (limited to 'c++/config')
-rw-r--r-- | c++/config/conclude.in | 18 |
1 files 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 |