summaryrefslogtreecommitdiffstats
path: root/testpar/t_bigio.c
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-04-03 18:08:39 (GMT)
committerGitHub <noreply@github.com>2023-04-03 18:08:39 (GMT)
commitf105dcc20a8400e4016fb8b5c572f9c27d65d957 (patch)
tree1de92826c3165f9772067794374e6fc5b65606c2 /testpar/t_bigio.c
parent1c1af33a126e66640c2c2f100f743bd8b8fc07da (diff)
downloadhdf5-f105dcc20a8400e4016fb8b5c572f9c27d65d957.zip
hdf5-f105dcc20a8400e4016fb8b5c572f9c27d65d957.tar.gz
hdf5-f105dcc20a8400e4016fb8b5c572f9c27d65d957.tar.bz2
Synchronize HDF5 tests with VOL tests (#2628)
Diffstat (limited to 'testpar/t_bigio.c')
-rw-r--r--testpar/t_bigio.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/testpar/t_bigio.c b/testpar/t_bigio.c
index 4ecb09e..af65cda 100644
--- a/testpar/t_bigio.c
+++ b/testpar/t_bigio.c
@@ -26,7 +26,7 @@ const char *FILENAME[3] = {"bigio_test.h5", "single_rank_independent_io.h5", NUL
#define DATASET4 "DSET4"
#define DXFER_COLLECTIVE_IO 0x1 /* Collective IO*/
#define DXFER_INDEPENDENT_IO 0x2 /* Independent IO collectively */
-#define DXFER_BIGCOUNT (1 < 29)
+#define DXFER_BIGCOUNT (1 << 29)
#define HYPER 1
#define POINT 2
@@ -1165,9 +1165,16 @@ single_rank_independent_io(void)
free(data);
H5Sclose(fspace_id);
- H5Pclose(fapl_id);
H5Dclose(dset_id);
H5Fclose(file_id);
+
+ H5E_BEGIN_TRY
+ {
+ H5Fdelete(FILENAME[1], fapl_id);
+ }
+ H5E_END_TRY;
+
+ H5Pclose(fapl_id);
}
MPI_Barrier(MPI_COMM_WORLD);
}