diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2010-02-26 16:55:49 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2010-02-26 16:55:49 (GMT) |
commit | c90711e71362716cd9ab25d6b9167ca49edccfe8 (patch) | |
tree | ea7dc293ef04279362e74c014934fe0bc18c6c51 /c++/test/h5cpputil.h | |
parent | 9f514c2b7de0d07cfcb26d3e2355e070033f7a11 (diff) | |
download | hdf5-c90711e71362716cd9ab25d6b9167ca49edccfe8.zip hdf5-c90711e71362716cd9ab25d6b9167ca49edccfe8.tar.gz hdf5-c90711e71362716cd9ab25d6b9167ca49edccfe8.tar.bz2 |
[svn-r18335] Description:
Removed header file testhdf5.h from C++ tests to eliminate a non-standard
problem on OpenVMS. It wasn't essential.
Platforms tested:
Linux/32 2.6 (jam)
FreeBSD/64 6.3 (liberty)
Ray agreed to test on OpenVMS.
Diffstat (limited to 'c++/test/h5cpputil.h')
-rw-r--r-- | c++/test/h5cpputil.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/c++/test/h5cpputil.h b/c++/test/h5cpputil.h index c547070..3313483 100644 --- a/c++/test/h5cpputil.h +++ b/c++/test/h5cpputil.h @@ -35,7 +35,8 @@ using std::cerr; using std::endl; #endif -#define SUBTEST(WHAT) {printf(" Subtest: %-52s",WHAT); fflush(stdout);} +#define MESSAGE(V,A) {if (HDGetTestVerbosity()>(V)) print_func A;} +#define SUBTEST(TEST) {printf(" Subtest: %-52s",TEST); fflush(stdout);} int check_values (hsize_t i, hsize_t j, int apoint, int acheck); int test_report (int, const H5std_string&); @@ -122,6 +123,7 @@ void test_h5s(); void test_reference(); void test_types(); void test_vlstrings(); +void test_dset(); /* Prototypes for the cleanup routines */ void cleanup_attr(); |