summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-07-18 22:36:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-07-18 22:36:44 (GMT)
commitd3b724f86aa2bc0f7a9333c3e3ce95cc2e5e0092 (patch)
tree2cf79656cb3f0840b02665bf5f7ea74b483158d2 /testpar
parent3d90b0e994b18286d7ed8f4789134986fc7b043b (diff)
downloadhdf5-d3b724f86aa2bc0f7a9333c3e3ce95cc2e5e0092.zip
hdf5-d3b724f86aa2bc0f7a9333c3e3ce95cc2e5e0092.tar.gz
hdf5-d3b724f86aa2bc0f7a9333c3e3ce95cc2e5e0092.tar.bz2
[svn-r30201] Description:
Switch test framework to dynamically allocate the testing array, and expand the length of the description field. Tested on: MacOSX/64 10.11.5 (amazon) w/serial & parallel (h5committest forthcoming)
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_shapesame.c6
-rw-r--r--testpar/testphdf5.c4
2 files changed, 10 insertions, 0 deletions
diff --git a/testpar/t_shapesame.c b/testpar/t_shapesame.c
index 12d0587..3675824 100644
--- a/testpar/t_shapesame.c
+++ b/testpar/t_shapesame.c
@@ -5147,6 +5147,12 @@ int main(int argc, char **argv)
printf("===================================\n");
}
+ /* close HDF5 library */
+ H5close();
+
+ /* Release test infrastructure */
+ TestShutdown();
+
MPI_Finalize();
/* cannot just return (nerrors) because exit code is limited to 1byte */
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index aaf18de..7818101 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -589,9 +589,13 @@ int main(int argc, char **argv)
printf("PHDF5 tests finished with no errors\n");
printf("===================================\n");
}
+
/* close HDF5 library */
H5close();
+ /* Release test infrastructure */
+ TestShutdown();
+
/* MPI_Finalize must be called AFTER H5close which may use MPI calls */
MPI_Finalize();