summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2019-05-03 21:08:22 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2019-05-03 21:08:22 (GMT)
commit8a4f679fda20577c4528977d0ee9a7e4c5bee055 (patch)
treed1291c1db09ff89035104c8b9347327a5a172560 /testpar/testphdf5.c
parentd3a51964aea1efe2c2795a776155456aa419e7b9 (diff)
downloadhdf5-8a4f679fda20577c4528977d0ee9a7e4c5bee055.zip
hdf5-8a4f679fda20577c4528977d0ee9a7e4c5bee055.tar.gz
hdf5-8a4f679fda20577c4528977d0ee9a7e4c5bee055.tar.bz2
Combine "collective group and dataset write" and "independent group and
dataset read" tests into one test. The second test is dependent on the file created by the first test, and will not pass when run by itself.
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 4269066..e1ccbed 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -409,10 +409,10 @@ int main(int argc, char **argv)
collngroups_params.name = PARATESTFILE;
collngroups_params.count = ngroups;
- AddTest("cngrpw", collective_group_write, NULL,
- "collective group and dataset write", &collngroups_params);
- AddTest("ingrpr", independent_group_read, NULL,
- "independent group and dataset read", &collngroups_params);
+ /* combined cngrpw and ingrpr tests because ingrpr reads file created by cngrpw. */
+ AddTest("cngrpw-ingrpr", collective_group_write_independent_group_read, NULL,
+ "collective grp/dset write - independent grp/dset read",
+ &collngroups_params);
#ifndef H5_HAVE_WIN32_API
AddTest("bigdset", big_dataset, NULL,
"big dataset test", PARATESTFILE);