diff options
author | Xiaowen Wu <wuxiaowe@ncsa.uiuc.edu> | 2005-03-24 02:08:15 (GMT) |
---|---|---|
committer | Xiaowen Wu <wuxiaowe@ncsa.uiuc.edu> | 2005-03-24 02:08:15 (GMT) |
commit | 3a64d64ff95ec780a9f1fc4bd30d7d02fa3f62a0 (patch) | |
tree | 34b447a95b0e7e7779ed6ce34ce80d2fa417b17c /test | |
parent | 9b070ebdcf9a36dc1398f3911290cf71ffd27b79 (diff) | |
download | hdf5-3a64d64ff95ec780a9f1fc4bd30d7d02fa3f62a0.zip hdf5-3a64d64ff95ec780a9f1fc4bd30d7d02fa3f62a0.tar.gz hdf5-3a64d64ff95ec780a9f1fc4bd30d7d02fa3f62a0.tar.bz2 |
[svn-r10395] Purpose:
Bug fix.
Description:
One test case of scaleoffset filter has fill value too large for int.
Solution:
Change the value to be within the range of int.
Platforms tested:
heping
Misc. update:
Diffstat (limited to 'test')
-rw-r--r-- | test/dsets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dsets.c b/test/dsets.c index 2085175..78d80d8 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -3726,7 +3726,7 @@ test_scaleoffset_int_2(hid_t file) if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error; /* Set fill value */ - fillval = 18446744073709551615; + fillval = 10000; if (H5Pset_fill_value(dc, H5T_NATIVE_INT, &fillval)<0) goto error; /* Set up to use scaleoffset filter, let library calculate minbits */ |