diff options
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 43818ff..0403b26 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -45,7 +45,7 @@ int doindependent=1; /* independent test */ unsigned dobig=0; /* "big" dataset tests */ /* FILENAME and filenames must have the same number of names */ -const char *FILENAME[14]={ +const char *FILENAME[15]={ "ParaEg1", "ParaEg2", "ParaEg3", @@ -59,8 +59,9 @@ const char *FILENAME[14]={ "ParaCC1", "ParaCC2", "ParaCC3", + "ParaCC4", NULL}; -char filenames[14][PATH_MAX]; +char filenames[15][PATH_MAX]; hid_t fapl; /* file access property list */ #ifdef USE_PAUSE @@ -475,6 +476,8 @@ int main(int argc, char **argv) "noncontiguous collective chunk io",filenames[11]); AddTest("coll. chunked 3", coll_chunk3,NULL, "muliti-chunk collective chunk io",filenames[12]); + AddTest("coll. chunked 4", coll_chunk4,NULL, + "collective to independent chunk io",filenames[13]); /* Display testing information */ TestInfo(argv[0]); |