summaryrefslogtreecommitdiffstats
path: root/test/ttsafe.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/ttsafe.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/ttsafe.c')
-rw-r--r--test/ttsafe.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ttsafe.c b/test/ttsafe.c
index 041ceb0..f7f661a 100644
--- a/test/ttsafe.c
+++ b/test/ttsafe.c
@@ -91,10 +91,10 @@ int main(int argc, char *argv[])
TestInit();
/* Tests are generally arranged from least to most complexity... */
- AddTest("dcreate", tts_dcreate, cleanup_dcreate, "multi-dataset creation");
- AddTest("error", tts_error, cleanup_error, "per-thread error stacks");
- AddTest("cancel", tts_cancel, cleanup_cancel, "thread cancellation safety test");
- AddTest("acreate", tts_acreate, cleanup_acreate, "multi-attribute creation");
+ AddTest("dcreate", tts_dcreate, cleanup_dcreate, "multi-dataset creation", NULL);
+ AddTest("error", tts_error, cleanup_error, "per-thread error stacks", NULL);
+ AddTest("cancel", tts_cancel, cleanup_cancel, "thread cancellation safety test", NULL);
+ AddTest("acreate", tts_acreate, cleanup_acreate, "multi-attribute creation", NULL);
/* Display testing information */
TestInfo(argv[0]);