diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-09-21 19:53:17 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-10-14 17:02:01 (GMT) |
commit | 4fc6f27a5ebb209753b5df9f15993f45e907daff (patch) | |
tree | 18e3595c4d6f3b93fbcc50c20ef23497d8097fbe /c++/test/h5cpputil.h | |
parent | 3ee36553b9aedb4e4d9cb31339e9c8a9f5ef3a92 (diff) | |
download | hdf5-4fc6f27a5ebb209753b5df9f15993f45e907daff.zip hdf5-4fc6f27a5ebb209753b5df9f15993f45e907daff.tar.gz hdf5-4fc6f27a5ebb209753b5df9f15993f45e907daff.tar.bz2 |
Purpose: Fix bug HDFFR-9920 cont.
Description:
Adding user's test revealed a flaw in the fix.
Moved CommonFG's functions in Group to H5Location, so that they
could be called by objects that can be used to specify a location
Also, rearranged many "#include" header files to resolve conflicts.
Platforms tested:
Linux/32 2.6 (jam)
Linux/64 (platypus)
Darwin (osx1010test)
Diffstat (limited to 'c++/test/h5cpputil.h')
-rw-r--r-- | c++/test/h5cpputil.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/c++/test/h5cpputil.h b/c++/test/h5cpputil.h index 50cde99..0a3221d 100644 --- a/c++/test/h5cpputil.h +++ b/c++/test/h5cpputil.h @@ -39,6 +39,7 @@ using std::endl; #define SUBTEST(TEST) {printf(" Subtest: %-52s",TEST); fflush(stdout);} int check_values (hsize_t i, hsize_t j, int apoint, int acheck); +void check_values(const char *value, const char* msg, int line, const char* file_name); int test_report (int, const H5std_string&); void issue_fail_msg(const char* where, int line, const char* file_name, const char* message=""); @@ -60,6 +61,8 @@ class TestFailedException : public Exception { }; // Overloaded/Template functions to verify values and display proper info + +// Verifies void verify_val(const char* x, const char* value, const char* where, int line, const char* file_name); template <class Type1, class Type2> @@ -153,6 +156,7 @@ void test_file(); void test_filters(); void test_links(); void test_h5s(); +void test_iterate(); void test_object(); void test_reference(); void test_types(); @@ -167,8 +171,9 @@ void cleanup_dsproplist(); void cleanup_dsets(); void cleanup_file(); void cleanup_filters(); -void cleanup_links(); void cleanup_h5s(); +void cleanup_iterate(); +void cleanup_links(); void cleanup_object(); void cleanup_reference(); void cleanup_types(); @@ -182,7 +187,6 @@ void cleanup_vlstrings(); void cleanup_select(void); void cleanup_time(void); void cleanup_vltypes(void); -void cleanup_iterate(void); void cleanup_array(void); void cleanup_genprop(void); void cleanup_misc(void); |