diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-03-27 02:38:39 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-03-27 02:38:39 (GMT) |
commit | b9a636874a182824a8be2847c4f2f4ae1a0af555 (patch) | |
tree | 57319e327d1642345615f560092491cf6d9ae952 /c++ | |
parent | b21ade680f166d7fc52ffe1b7deb4d25ecd0c6c0 (diff) | |
download | hdf5-b9a636874a182824a8be2847c4f2f4ae1a0af555.zip hdf5-b9a636874a182824a8be2847c4f2f4ae1a0af555.tar.gz hdf5-b9a636874a182824a8be2847c4f2f4ae1a0af555.tar.bz2 |
[svn-r3719] Purpose:
Improve C++ API test output appearance - 1.4 branch
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++')
-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 |