diff options
author | Quincey Koziol <koziol@lbl.gov> | 2020-03-25 21:27:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2020-03-25 21:27:24 (GMT) |
commit | 181c6110251d7a9e9cc23e14dfd8f52cdb14422b (patch) | |
tree | ea2a1d2dc15bb8d441d722c9205561adc8b5e0a1 | |
parent | 1b582c3ce4a58c7e173ce42089388a9665857b21 (diff) | |
parent | a3e08862c614463d16eb1017303e5fec44518b09 (diff) | |
download | hdf5-181c6110251d7a9e9cc23e14dfd8f52cdb14422b.zip hdf5-181c6110251d7a9e9cc23e14dfd8f52cdb14422b.tar.gz hdf5-181c6110251d7a9e9cc23e14dfd8f52cdb14422b.tar.bz2 |
Merge pull request #2467 in HDFFV/hdf5 from alloc_stats_2 to develop
* commit 'a3e08862c614463d16eb1017303e5fec44518b09':
Correct macro check
-rw-r--r-- | test/tmisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tmisc.c b/test/tmisc.c index 76f4ac9..539a027 100644 --- a/test/tmisc.c +++ b/test/tmisc.c @@ -5743,7 +5743,7 @@ test_misc35(void) ret = H5get_free_list_sizes(®_size_start, &arr_size_start, &blk_size_start, &fac_size_start); CHECK(ret, FAIL, "H5get_free_list_sizes"); -#if defined H5_MEMORY_ALLOC_SANITY_CHECK +#if !defined H5_USING_MEMCHECKER /* All the free list values should be >0 */ if(0 == reg_size_start) ERROR("reg_size_start == 0"); |