summaryrefslogtreecommitdiffstats
path: root/test/fillval.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-21 06:00:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-21 06:00:44 (GMT)
commit725d33c5ff21922f523c8804fad1826d38e06b2f (patch)
treeb47c670a40bb72ee398bb98f04e17a49ecd906d6 /test/fillval.c
parent0061212eca2f16bd2f310649912982ad1fc0e330 (diff)
downloadhdf5-725d33c5ff21922f523c8804fad1826d38e06b2f.zip
hdf5-725d33c5ff21922f523c8804fad1826d38e06b2f.tar.gz
hdf5-725d33c5ff21922f523c8804fad1826d38e06b2f.tar.bz2
[svn-r13995] Description:
Reduce the dataset dimensions for the "check extend" test, so it doesn't take so long... Tested on: FreeBSD/32 6.2 (duty) w/check-vfd
Diffstat (limited to 'test/fillval.c')
-rw-r--r--test/fillval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fillval.c b/test/fillval.c
index 2a6138e..6d4597b 100644
--- a/test/fillval.c
+++ b/test/fillval.c
@@ -1826,9 +1826,9 @@ test_extend(hid_t fapl, const char *base_name, H5D_layout_t layout)
hid_t file = -1; /* File ID */
hid_t dcpl = -1; /* Dataset creation property list ID */
hid_t cmpd_vl_tid = -1; /* Compound+vl datatype ID */
- hsize_t start_size[5] = {32, 16, 8, 4, 2};
- hsize_t max_size[5] = {128, 64, 32, 16, 8};
- hsize_t ch_size[5] = {1, 16, 8, 4, 2};
+ hsize_t start_size[5] = {8, 8, 8, 4, 2};
+ hsize_t max_size[5] = {32, 32, 32, 16, 8};
+ hsize_t ch_size[5] = {1, 8, 8, 4, 2};
#ifdef NO_FILLING
int fillval_i = 0;
#else