Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendersonHDF committed Jan 9, 2025
1 parent 0259bc1 commit b0c883c
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions test/API/H5_api_test_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -850,17 +850,21 @@ remove_test_file(const char *prefix, const char *filename)
else
test_file = filename;

#if 0
H5E_BEGIN_TRY
{
if (H5Fis_accessible(test_file, H5P_DEFAULT) > 0) {
if (H5Fdelete(test_file, H5P_DEFAULT) < 0) {
printf(" couldn't remove file '%s'\n", test_file);
ret_value = FAIL;
goto done;
}
#endif
if (H5Fis_accessible(test_file, H5P_DEFAULT) > 0) {
if (H5Fdelete(test_file, H5P_DEFAULT) < 0) {
printf(" couldn't remove file '%s'\n", test_file);
ret_value = FAIL;
goto done;
}
}
#if 0
}
H5E_END_TRY
#endif

done:
free(prefixed_filename);
Expand Down

0 comments on commit b0c883c

Please sign in to comment.