diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-22 02:11:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-22 02:11:54 (GMT) |
commit | af25c747adf228eacbd0625f8cd41f84cb3fbbc3 (patch) | |
tree | 3b9b221cf15e6ee39153fcfd8099b7b9568d7e18 /test/big.c | |
parent | fb238c24a5c6679c7555c95f887b7f4a49dbb640 (diff) | |
download | hdf5-af25c747adf228eacbd0625f8cd41f84cb3fbbc3.zip hdf5-af25c747adf228eacbd0625f8cd41f84cb3fbbc3.tar.gz hdf5-af25c747adf228eacbd0625f8cd41f84cb3fbbc3.tar.bz2 |
[svn-r27851] Description:
Normalization changes that wouldn't otherwise be necessary if the VDS branch
wasn't coming in shortly.
Tested on:
MacOSX/64 10.10.5 (amazon) w/serial & parallel
(h5committest forthcoming)
Diffstat (limited to 'test/big.c')
-rw-r--r-- | test/big.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -618,8 +618,8 @@ test_sec2(hid_t fapl) quit: /* End with normal return code */ /* Clean up the test file */ - if(h5_clean_files(FILENAME, fapl)) - HDremove(DNAME); + h5_clean_files(FILENAME, fapl); + HDremove(DNAME); return 0; error: @@ -655,8 +655,8 @@ test_stdio(hid_t fapl) quit: /* End with normal return code */ /* Clean up the test file */ - if(h5_clean_files(FILENAME, fapl)) - HDremove(DNAME); + h5_clean_files(FILENAME, fapl); + HDremove(DNAME); HDfflush(stdout); return 0; @@ -716,8 +716,8 @@ test_family(hid_t fapl) quit: /* End with normal return code */ /* Clean up the test file */ - if(h5_clean_files(FILENAME, fapl)) - HDremove(DNAME); + h5_clean_files(FILENAME, fapl); + HDremove(DNAME); return 0; error: |