diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-04-11 16:59:27 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-04-12 04:48:51 (GMT) |
commit | f75379d780dc6d2a262d0b613e588a8c0629c848 (patch) | |
tree | d36e1a8ea6936836c4cef8b9bc3447892e1ef373 /test/set_extent.c | |
parent | 4a37934b5d02c9c153fa0eda18da3b61a3aa5991 (diff) | |
download | hdf5-f75379d780dc6d2a262d0b613e588a8c0629c848.zip hdf5-f75379d780dc6d2a262d0b613e588a8c0629c848.tar.gz hdf5-f75379d780dc6d2a262d0b613e588a8c0629c848.tar.bz2 |
Fix for H5Dset_extent test failure with extensive array indexing (HDFFV-9771)
1) Calculate chunk index for extensive array index based on swizzled max chunks when unlim_dim > 0
2) Minor fixes to test/fheap.c that somehow were missed from last check in. See pull request #396 review comments.
Diffstat (limited to 'test/set_extent.c')
-rw-r--r-- | test/set_extent.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/set_extent.c b/test/set_extent.c index 949120b..052a35a 100644 --- a/test/set_extent.c +++ b/test/set_extent.c @@ -2603,15 +2603,6 @@ static int test_random_rank4( hid_t fapl, hid_t dcpl, hbool_t do_fillvalue, volatile unsigned i, j, k, l, m; /* Local indices */ char filename[NAME_BUF_SIZE]; - /* *** FIXME *** - * Skip the test if an extensible array index is requested, as resizing - * them is broken. - * - * Remove these lines as appropriate when these problems are fixed. - */ - if(index_type == RANK4_INDEX_EARRAY) - return 0; - /* create a new file */ h5_fixname(FILENAME[4], fapl, filename, sizeof filename); if ((file = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) @@ -2816,15 +2807,6 @@ static int test_random_rank4_vl( hid_t fapl, hid_t dcpl, hbool_t do_fillvalue, volatile unsigned i, j, k, l, m; /* Local indices */ char filename[NAME_BUF_SIZE]; - /* *** FIXME *** - * Skip the test if an extensible array index is requested, as resizing - * them is broken. - * - * Remove these lines as appropriate when these problems are fixed. - */ - if(index_type == RANK4_INDEX_EARRAY) - return 0; - /* Initialize fill value buffers so they aren't freed in case of an error */ fill_value.len = 0; fill_value.p = NULL; |