summaryrefslogtreecommitdiffstats
path: root/test/tselect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-12-06 19:05:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-12-06 19:05:12 (GMT)
commit7a30de3a2bf48a81dcf7679782ba4e247bd8991e (patch)
treebf62d63e3303453ed60f8bca611f8ad56b37fedd /test/tselect.c
parent1b67380c0abcf87ae05f8661647dacd75858b50e (diff)
downloadhdf5-7a30de3a2bf48a81dcf7679782ba4e247bd8991e.zip
hdf5-7a30de3a2bf48a81dcf7679782ba4e247bd8991e.tar.gz
hdf5-7a30de3a2bf48a81dcf7679782ba4e247bd8991e.tar.bz2
[svn-r4680] Purpose:
Code cleanup Description: Property that H5P(g|s)et_hyper_cache uses is no longer in use inside the library. Solution: Removed H5P(g|s)et_hyper_cache API functions, except when backward compatibility is turned on. When backward compatibility is turned on, the property is defined by the library, but unused internally. Platforms tested: FreeBSD 4.4 (sleipnir)
Diffstat (limited to 'test/tselect.c')
-rw-r--r--test/tselect.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tselect.c b/test/tselect.c
index 0250786..c5aa682 100644
--- a/test/tselect.c
+++ b/test/tselect.c
@@ -2232,8 +2232,10 @@ test_select_hyper_union(void)
xfer = H5Pcreate (H5P_DATASET_XFER);
CHECK(xfer, FAIL, "H5Pcreate");
+#ifdef H5_WANT_H5_V1_4_COMPAT
ret = H5Pset_hyper_cache(xfer,0,1);
CHECK(ret, FAIL, "H5Pset_hyper_cache");
+#endif /* H5_WANT_H5_V1_4_COMPAT */
/* Write selection to disk */
ret=H5Dwrite(dataset,H5T_NATIVE_UCHAR,sid2,sid1,xfer,wbuf);