summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-08-08 03:01:03 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-08-08 03:01:03 (GMT)
commit5a7fcfa213dbd65e8745d842b229ad777deace94 (patch)
tree0e47c47ccfaab1bdc9ca734239216f4a1d967034 /testpar/testphdf5.c
parent6936f40fb8eb01ab1c50b5c675f9830b4b5ad10b (diff)
downloadhdf5-5a7fcfa213dbd65e8745d842b229ad777deace94.zip
hdf5-5a7fcfa213dbd65e8745d842b229ad777deace94.tar.gz
hdf5-5a7fcfa213dbd65e8745d842b229ad777deace94.tar.bz2
[svn-r9051] 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 2eee9e8..bc90eaf 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -459,9 +459,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]);