diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2017-04-12 08:23:57 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2017-04-12 08:23:57 (GMT) |
commit | f6920ad11c9c9b9033bbc9af1c6f08aacca15316 (patch) | |
tree | d36e1a8ea6936836c4cef8b9bc3447892e1ef373 /test/set_extent.c | |
parent | 4a37934b5d02c9c153fa0eda18da3b61a3aa5991 (diff) | |
parent | f75379d780dc6d2a262d0b613e588a8c0629c848 (diff) | |
download | hdf5-f6920ad11c9c9b9033bbc9af1c6f08aacca15316.zip hdf5-f6920ad11c9c9b9033bbc9af1c6f08aacca15316.tar.gz hdf5-f6920ad11c9c9b9033bbc9af1c6f08aacca15316.tar.bz2 |
Merge pull request #416 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:hdf5_1_10 to hdf5_1_10
* commit 'f75379d780dc6d2a262d0b613e588a8c0629c848':
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; |