summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2004-07-21 23:42:10 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2004-07-21 23:42:10 (GMT)
commitc7ca89eedaaa021e1a14c0947f72dbcd2032e781 (patch)
tree3dbe54a046f17fd58fdcd3bfe51e839d2018bc41 /testpar/testphdf5.c
parent1232d53a3209efbdfab649b66efa8b57d4a836d5 (diff)
downloadhdf5-c7ca89eedaaa021e1a14c0947f72dbcd2032e781.zip
hdf5-c7ca89eedaaa021e1a14c0947f72dbcd2032e781.tar.gz
hdf5-c7ca89eedaaa021e1a14c0947f72dbcd2032e781.tar.bz2
[svn-r8924] Purpose:
To test collective chunk IO properly. Description: See the previous message. Solution: See the previous message. Platforms tested: arabica(Sol 2.7), eirene(Linux), copper(AIX) Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c7
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]);