summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-08-08 02:26:44 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-08-08 02:26:44 (GMT)
commit7464e1fb1dea31ea9b3211a7b52585eea4a8b496 (patch)
treea23f69c76fcc5421a5ed1cbfca358fdbf7d0f927 /testpar/testphdf5.c
parente6266dd7a1977a8328ff456c2d7451c1af9a96dc (diff)
downloadhdf5-7464e1fb1dea31ea9b3211a7b52585eea4a8b496.zip
hdf5-7464e1fb1dea31ea9b3211a7b52585eea4a8b496.tar.gz
hdf5-7464e1fb1dea31ea9b3211a7b52585eea4a8b496.tar.bz2
[svn-r9050] Purpose:
Feature Description: Added a feature such that if the test name starts with '-', do not run it by default. Platforms tested: Eirene both serial and parallel. Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index ba6a075..2e5efb7 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -462,9 +462,11 @@ int main(int argc, char **argv)
AddTest("indngroupsread", independent_group_read, NULL,
"independent group and dataset read", &collngroups_params);
+ /* By default, do not run big dataset. */
+ AddTest("-bigdataset", big_dataset, NULL,
+ "big dataset test", filenames[7]);
if (dobig && sizeof(MPI_Offset)>4){
- AddTest("bigdataset", big_dataset, NULL,
- "big dataset test", filenames[7]);
+ SetTest("bigdataset", ONLYTEST);
}
AddTest("fillvalue", dataset_fillvalue, NULL,
"dataset fill value", filenames[8]);