diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-07 19:02:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-07 19:02:46 (GMT) |
commit | 4e23c807585ed705173f32e374884a46e4a4f2dd (patch) | |
tree | df458773252f84a19720b4d8b3588db955f4b6d1 /test/tselect.c | |
parent | 2d5f8835fd9851c65d8e33a9c4bbe5da64d5427e (diff) | |
download | hdf5-4e23c807585ed705173f32e374884a46e4a4f2dd.zip hdf5-4e23c807585ed705173f32e374884a46e4a4f2dd.tar.gz hdf5-4e23c807585ed705173f32e374884a46e4a4f2dd.tar.bz2 |
[svn-r7181] Purpose:
Version update
Description:
Removed 1.4 compatibility code in the library.
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
Diffstat (limited to 'test/tselect.c')
-rw-r--r-- | test/tselect.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/tselect.c b/test/tselect.c index 6e4c07d..59150f4 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -2522,11 +2522,6 @@ 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); CHECK(ret, FAIL, "H5Dwrite"); @@ -6155,11 +6150,7 @@ test_select(void) hid_t plist_id; /* Property list for reading random hyperslabs */ hid_t fapl; /* Property list accessing the file */ int mdc_nelmts; /* Metadata number of elements */ -#ifdef H5_WANT_H5_V1_4_COMPAT - int rdcc_nelmts; /* Raw data number of elements */ -#else /* H5_WANT_H5_V1_4_COMPAT */ size_t rdcc_nelmts; /* Raw data number of elements */ -#endif /* H5_WANT_H5_V1_4_COMPAT */ size_t rdcc_nbytes; /* Raw data number of bytes */ double rdcc_w0; /* Raw data write percentage */ hssize_t offset[SPACE7_RANK]={1,1}; /* Offset for testing selection offsets */ @@ -6173,11 +6164,7 @@ test_select(void) CHECK(plist_id, FAIL, "H5Pcreate"); /* test I/O with a very small buffer for reads */ -#ifdef H5_WANT_H5_V1_4_COMPAT - ret=H5Pset_buffer(plist_id,(hsize_t)59,NULL,NULL); -#else /* H5_WANT_H5_V1_4_COMPAT */ ret=H5Pset_buffer(plist_id,(size_t)59,NULL,NULL); -#endif /* H5_WANT_H5_V1_4_COMPAT */ CHECK(ret, FAIL, "H5Pset_buffer"); /* These next tests use the same file */ |