summaryrefslogtreecommitdiffstats
path: root/test/ttsafe.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-03-31 14:23:54 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-03-31 14:23:54 (GMT)
commit310a684fc28d719c1ed4e67818a5810ad632e547 (patch)
tree009f27995fa0cc40f37a3c5c564f0ec78a0c5baa /test/ttsafe.c
parent0180863320994d8a7efba446f81bd73819315cd2 (diff)
downloadhdf5-310a684fc28d719c1ed4e67818a5810ad632e547.zip
hdf5-310a684fc28d719c1ed4e67818a5810ad632e547.tar.gz
hdf5-310a684fc28d719c1ed4e67818a5810ad632e547.tar.bz2
[svn-r8290] 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".
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]);