summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2020-03-25 20:54:50 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2020-03-25 20:54:50 (GMT)
commit32742c089012f85643ccf450fc3ed27ae3ec584b (patch)
treeedcd7173b2333396fbb60dba292e1e1a07880f8e
parenta45a994bd4de22652d284d97c7a996758f99e926 (diff)
downloadhdf5-32742c089012f85643ccf450fc3ed27ae3ec584b.zip
hdf5-32742c089012f85643ccf450fc3ed27ae3ec584b.tar.gz
hdf5-32742c089012f85643ccf450fc3ed27ae3ec584b.tar.bz2
Was checking the wrong compiler macro.
-rw-r--r--test/tmisc.c2
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(&reg_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");