summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-30 19:47:40 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-30 19:47:40 (GMT)
commit70db25c5614b515edac40bff118fb6462e6e0415 (patch)
treec549824cd0f9471b11514818d0280dfb2a08fc63 /test
parent82a89d2c18953ca826f3fa805f01f81255839531 (diff)
downloadhdf5-70db25c5614b515edac40bff118fb6462e6e0415.zip
hdf5-70db25c5614b515edac40bff118fb6462e6e0415.tar.gz
hdf5-70db25c5614b515edac40bff118fb6462e6e0415.tar.bz2
[svn-r7126] Purpose:
Code cleanup Description: Add in rest of szip "options mask" macros that were missing. Also made "raw" options mask set by the library, instead of requiring users to always set it. Platforms tested: FreeBSD 4.8 (sleipnir) Minor tweaks too small fo h5committest
Diffstat (limited to 'test')
-rw-r--r--test/dsets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dsets.c b/test/dsets.c
index 12883b9..dbe215b 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -1637,7 +1637,7 @@ test_filters(hid_t file)
#ifdef H5_HAVE_FILTER_SZIP
hsize_t szip_size; /* Size of dataset with szip filter */
- unsigned szip_options_mask=H5_SZIP_RAW_OPTION_MASK|H5_SZIP_NN_OPTION_MASK;
+ unsigned szip_options_mask=H5_SZIP_NN_OPTION_MASK;
unsigned szip_pixels_per_block=4;
#endif /* H5_HAVE_FILTER_SZIP */
@@ -2587,7 +2587,7 @@ file)
hid_t dsid; /* Dataset ID */
hid_t sid; /* Dataspace ID */
hid_t dcpl; /* Dataspace creation property list ID */
- unsigned szip_options_mask=H5_SZIP_RAW_OPTION_MASK|H5_SZIP_NN_OPTION_MASK;
+ unsigned szip_options_mask=H5_SZIP_NN_OPTION_MASK;
unsigned szip_pixels_per_block;
const hsize_t dims[2] = {500, 4096}; /* Dataspace dimensions */
const hsize_t chunk_dims[2] = {250, 2048}; /* Chunk dimensions */