summaryrefslogtreecommitdiffstats
path: root/test/file_image.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-09-22 02:11:54 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-09-22 02:11:54 (GMT)
commitaf25c747adf228eacbd0625f8cd41f84cb3fbbc3 (patch)
tree3b9b221cf15e6ee39153fcfd8099b7b9568d7e18 /test/file_image.c
parentfb238c24a5c6679c7555c95f887b7f4a49dbb640 (diff)
downloadhdf5-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/file_image.c')
-rw-r--r--test/file_image.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/test/file_image.c b/test/file_image.c
index 42199cb..d9c782a 100644
--- a/test/file_image.c
+++ b/test/file_image.c
@@ -890,8 +890,7 @@ test_get_file_image(const char * test_banner,
VERIFY(err == SUCCEED, "H5Pclose(core_fapl_id) failed.");
/* tidy up */
- result = h5_clean_files(FILENAME2, fapl);
- VERIFY(result != 0, "h5_clean_files() failed.");
+ h5_clean_files(FILENAME2, fapl);
/* discard the image buffer if it exists */
if(image_ptr != NULL)
@@ -1039,8 +1038,7 @@ test_get_file_image_error_rejection(void)
VERIFY(err == SUCCEED, "H5Fclose(file_id) failed.");
/* tidy up */
- result = h5_clean_files(FILENAME2, fapl_id);
- VERIFY(result != 0, "h5_clean_files(1) failed.");
+ h5_clean_files(FILENAME2, fapl_id);
/* discard the image buffer if it exists */
if(image_ptr != NULL)
@@ -1145,8 +1143,7 @@ test_get_file_image_error_rejection(void)
VERIFY(err == SUCCEED, "H5Fclose(2) failed.");
/* tidy up */
- result = h5_clean_files(FILENAME2, fapl_id);
- VERIFY(result != 0, "h5_clean_files(2 failed.");
+ h5_clean_files(FILENAME2, fapl_id);
/************************** Test #3 **********************************/
/* set up a split file driver test file, and try to get its image
@@ -1208,8 +1205,7 @@ test_get_file_image_error_rejection(void)
VERIFY(err == SUCCEED, "H5Fclose(2) failed.");
/* tidy up */
- result = h5_clean_files(FILENAME2, fapl_id);
- VERIFY(result != 0, "h5_clean_files(2 failed.");
+ h5_clean_files(FILENAME2, fapl_id);
/************************** Test #4 **********************************/
/* set up a family file driver test file, and try to get its image
@@ -1269,8 +1265,7 @@ test_get_file_image_error_rejection(void)
VERIFY(err == SUCCEED, "H5Fclose(2) failed.");
/* tidy up */
- result = h5_clean_files(FILENAME2, fapl_id);
- VERIFY(result != 0, "h5_clean_files(2 failed.");
+ h5_clean_files(FILENAME2, fapl_id);
PASSED();