summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-05 20:05:52 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-05 20:05:52 (GMT)
commitc134146b3ee754526e9b976de799226b6469de47 (patch)
tree0a4ac12de7093ab917ccc9836098dea80b848150 /testpar/testphdf5.c
parent51b427848d17421d3922741e46cf0c0a6f2ce40b (diff)
downloadhdf5-c134146b3ee754526e9b976de799226b6469de47.zip
hdf5-c134146b3ee754526e9b976de799226b6469de47.tar.gz
hdf5-c134146b3ee754526e9b976de799226b6469de47.tar.bz2
[svn-r6975] Purpose:
Bug fix Description: Don't attempt to perform collective I/O on chunked datasets. Platforms tested: FreeBSD 4.8 (sleipnir) w/parallel h5committested
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index 473659a..6a4a0b2 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -400,6 +400,9 @@ int main(int argc, char **argv)
MPI_BANNER("extendible dataset independent write...");
extend_writeInd(filenames[2]);
+
+ MPI_BANNER("extendible dataset collective write...");
+ extend_writeAll(filenames[2]);
}
else{
MPI_BANNER("write tests skipped");
@@ -414,6 +417,9 @@ int main(int argc, char **argv)
MPI_BANNER("extendible dataset independent read...");
extend_readInd(filenames[2]);
+
+ MPI_BANNER("extendible dataset collective read...");
+ extend_readAll(filenames[2]);
}
else{
MPI_BANNER("read tests skipped");