summaryrefslogtreecommitdiffstats
path: root/testpar/t_bigio.c
diff options
context:
space:
mode:
Diffstat (limited to 'testpar/t_bigio.c')
-rw-r--r--testpar/t_bigio.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/testpar/t_bigio.c b/testpar/t_bigio.c
index 4ecb09e..ad669d8 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);
}
@@ -1289,8 +1296,6 @@ coll_chunk1(void)
* Programmer: Unknown
* July 12th, 2004
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/