summaryrefslogtreecommitdiffstats
path: root/test/testhdf5.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-03-30 23:35:16 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-03-30 23:35:16 (GMT)
commitd7a5f94d66390f2a777e51dba2e781d7f84e0656 (patch)
tree2db9623a283851a7273b2d01096f45c06c6a3d30 /test/testhdf5.c
parentc3d9b510b4e65cd32ec9708fd369d31b77d76ea6 (diff)
downloadhdf5-d7a5f94d66390f2a777e51dba2e781d7f84e0656.zip
hdf5-d7a5f94d66390f2a777e51dba2e781d7f84e0656.tar.gz
hdf5-d7a5f94d66390f2a777e51dba2e781d7f84e0656.tar.bz2
[svn-r8289] Purpose:
Feature Description: Added to AddTest() a generic parameters pointer argument to allow some extra parameters for some tests. E.g., test file names can be customized during runtime and passed into the test routines. Platforms tested: "h5committested". Also run compat test in eirene.
Diffstat (limited to 'test/testhdf5.c')
-rw-r--r--test/testhdf5.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/test/testhdf5.c b/test/testhdf5.c
index b368ad2..e9941de 100644
--- a/test/testhdf5.c
+++ b/test/testhdf5.c
@@ -46,24 +46,24 @@ main(int argc, char *argv[])
TestInit();
/* Tests are generally arranged from least to most complexity... */
- AddTest("configure", test_configure, cleanup_configure, "Configure definitions");
- AddTest("metadata", test_metadata, cleanup_metadata, "Encode/decode metadata code");
- AddTest("tbbt", test_tbbt, NULL, "Threaded, Balanced, Binary Trees");
- AddTest("tst", test_tst, NULL, "Ternary Search Trees");
- AddTest("heap", test_heap, NULL, "Memory Heaps");
- AddTest("refstr", test_refstr, NULL, "Reference Counted Strings");
- AddTest("file", test_file, cleanup_file, "Low-Level File I/O");
- AddTest("h5s", test_h5s, cleanup_h5s, "Dataspaces");
- AddTest("attr", test_attr, cleanup_attr, "Attributes");
- AddTest("select", test_select, cleanup_select, "Selections");
- AddTest("time", test_time, cleanup_time, "Time Datatypes");
- AddTest("reference", test_reference, cleanup_reference, "References");
- AddTest("vltypes", test_vltypes, cleanup_vltypes, "Variable-Length Datatypes");
- AddTest("vlstrings", test_vlstrings, cleanup_vlstrings, "Variable-Length Strings");
- AddTest("iterate", test_iterate, cleanup_iterate, "Group & Attribute Iteration");
- AddTest("array", test_array, cleanup_array, "Array Datatypes");
- AddTest("genprop", test_genprop, cleanup_genprop, "Generic Properties");
- AddTest("misc", test_misc, cleanup_misc, "Miscellaneous");
+ AddTest("configure", test_configure, cleanup_configure, "Configure definitions", NULL);
+ AddTest("metadata", test_metadata, cleanup_metadata, "Encode/decode metadata code", NULL);
+ AddTest("tbbt", test_tbbt, NULL, "Threaded, Balanced, Binary Trees", NULL);
+ AddTest("tst", test_tst, NULL, "Ternary Search Trees", NULL);
+ AddTest("heap", test_heap, NULL, "Memory Heaps", NULL);
+ AddTest("refstr", test_refstr, NULL, "Reference Counted Strings", NULL);
+ AddTest("file", test_file, cleanup_file, "Low-Level File I/O", NULL);
+ AddTest("h5s", test_h5s, cleanup_h5s, "Dataspaces", NULL);
+ AddTest("attr", test_attr, cleanup_attr, "Attributes", NULL);
+ AddTest("select", test_select, cleanup_select, "Selections", NULL);
+ AddTest("time", test_time, cleanup_time, "Time Datatypes", NULL);
+ AddTest("reference", test_reference, cleanup_reference, "References", NULL);
+ AddTest("vltypes", test_vltypes, cleanup_vltypes, "Variable-Length Datatypes", NULL);
+ AddTest("vlstrings", test_vlstrings, cleanup_vlstrings, "Variable-Length Strings", NULL);
+ AddTest("iterate", test_iterate, cleanup_iterate, "Group & Attribute Iteration", NULL);
+ AddTest("array", test_array, cleanup_array, "Array Datatypes", NULL);
+ AddTest("genprop", test_genprop, cleanup_genprop, "Generic Properties", NULL);
+ AddTest("misc", test_misc, cleanup_misc, "Miscellaneous", NULL);
/* Display testing information */
TestInfo(argv[0]);