diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2017-03-02 14:24:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-03-02 14:24:46 (GMT) |
commit | 5df52404bc6f6323ebf064b3d82b8e683de96eba (patch) | |
tree | d83cd5a7e6a40ce7dcfacf9106b32ea636b73963 /test/freespace.c | |
parent | 046e64a9bd725c5ba0bebef1ba7278445e391d25 (diff) | |
download | hdf5-5df52404bc6f6323ebf064b3d82b8e683de96eba.zip hdf5-5df52404bc6f6323ebf064b3d82b8e683de96eba.tar.gz hdf5-5df52404bc6f6323ebf064b3d82b8e683de96eba.tar.bz2 |
Misc. small cleanups to sync against incoming page buffering changes.
Diffstat (limited to 'test/freespace.c')
-rw-r--r-- | test/freespace.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/freespace.c b/test/freespace.c index d963a6e..181e6a1 100644 --- a/test/freespace.c +++ b/test/freespace.c @@ -1995,7 +1995,8 @@ test_fs_sect_shrink(hid_t fapl) (hsize_t)(TEST_SECT_SIZE50), (H5FS_section_info_t **)&node)) < 0) FAIL_STACK_ERROR - if (node_found) TEST_ERROR + if (node_found) + TEST_ERROR if(check_stats(f, frsp, &state)) TEST_ERROR @@ -2095,7 +2096,8 @@ test_fs_sect_shrink(hid_t fapl) (hsize_t)(TEST_SECT_SIZE50), (H5FS_section_info_t **)&node)) < 0) FAIL_STACK_ERROR - if (node_found) TEST_ERROR + if (node_found) + TEST_ERROR /* section A should not be there in free-space */ if((node_found = H5FS_sect_find(f, dxpl_id, frsp, @@ -2238,8 +2240,8 @@ test_fs_sect_change_class(hid_t fapl) TEST_ERROR if (H5FS_sect_change_class(f, dxpl_id, frsp, (H5FS_section_info_t *)sect_node1, - TEST_FSPACE_SECT_TYPE_NONE) < 0) - TEST_ERROR + TEST_FSPACE_SECT_TYPE_NONE) < 0) + TEST_ERROR state.serial_sect_count += 1; state.ghost_sect_count -=1; |