diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-13 18:42:47 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-13 18:42:47 (GMT) |
commit | 803bb3e532c0c2ff26f6b7cc115a8c6f33ea00f5 (patch) | |
tree | 6e71ca792f570ce7280c5338e9e7b9f5f7fdc003 /testpar/testphdf5.h | |
parent | 0a8d8c54b249b81c58e4ab7d6481d737e2857c7a (diff) | |
download | hdf5-803bb3e532c0c2ff26f6b7cc115a8c6f33ea00f5.zip hdf5-803bb3e532c0c2ff26f6b7cc115a8c6f33ea00f5.tar.gz hdf5-803bb3e532c0c2ff26f6b7cc115a8c6f33ea00f5.tar.bz2 |
[svn-r8867] Purpose:
Bug fix
Description:
Fix error in chunked dataset I/O where data written out wasn't read
correctly from a chunked, extendible dataset after the dataset was extended.
Also, fix parallel I/O tests to gather error results from all processes,
in order to detect errors that only occur on one process.
Solution:
Bypass chunk cache for reads as well as writes, if parallel I/O driver is
used and file is opened for writing.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Diffstat (limited to 'testpar/testphdf5.h')
-rw-r--r-- | testpar/testphdf5.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testpar/testphdf5.h b/testpar/testphdf5.h index 968ee28..8fb6b39 100644 --- a/testpar/testphdf5.h +++ b/testpar/testphdf5.h @@ -12,8 +12,6 @@ * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* $Id$ */ - #ifndef PHDF5TEST_H #define PHDF5TEST_H @@ -153,6 +151,7 @@ void test_split_comm_access(void); void dataset_writeInd(void); void dataset_writeAll(void); void extend_writeInd(void); +void extend_writeInd2(void); void extend_writeAll(void); void dataset_readInd(void); void dataset_readAll(void); |