summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index b5ebb98..8ff0dc6 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -272,9 +272,9 @@ create_faccess_plist(MPI_Comm comm, MPI_Info info, int l_facc_type)
/* set Parallel access with communicator */
ret = H5Pset_fapl_mpio(ret_pl, comm, info);
VRFY((ret >= 0), "");
- ret = H5Pset_coll_metadata_read(ret_pl, true);
+ ret = H5Pset_coll_metadata_read(ret_pl, TRUE);
VRFY((ret >= 0), "");
- ret = H5Pset_coll_metadata_write(ret_pl, true);
+ ret = H5Pset_coll_metadata_write(ret_pl, TRUE);
VRFY((ret >= 0), "");
return(ret_pl);
}
@@ -536,6 +536,7 @@ int main(int argc, char **argv)
AddTest("denseattr", test_dense_attr, NULL,
"Store Dense Attributes", PARATESTFILE);
+
/* Display testing information */
TestInfo(argv[0]);