From 3a64d64ff95ec780a9f1fc4bd30d7d02fa3f62a0 Mon Sep 17 00:00:00 2001 From: Xiaowen Wu Date: Wed, 23 Mar 2005 21:08:15 -0500 Subject: [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: --- test/dsets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit v0.12