diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-08-30 04:35:17 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-08-30 04:35:17 (GMT) |
commit | 3182a8a040b463629fd9f266b6a1eda6ce70c3d7 (patch) | |
tree | db107c21fe8ae27e83b05686fd919dd44c0c12b6 /testpar/testphdf5.h | |
parent | bd4312d0497592a665a25415ec2f9d3db9d9f6b2 (diff) | |
download | hdf5-3182a8a040b463629fd9f266b6a1eda6ce70c3d7.zip hdf5-3182a8a040b463629fd9f266b6a1eda6ce70c3d7.tar.gz hdf5-3182a8a040b463629fd9f266b6a1eda6ce70c3d7.tar.bz2 |
[svn-r11312] Purpose:
Bug #281
Description:
A dataset created in serial mode with H5D_ALLOC_TIME_INCR allocation setting
was not extendible, either explicitly by H5Dextend or implicitly by writing
to unallocated chunks. This was because parallel mode expects the allocation
mode be H5D_ALLOC_TIME_INCR only.
Solution:
Modified library to allocate more space when needed or directed if the
file is opened by parallel mode, independent of what the dataset allocation
mode is.
Platforms tested:
Heping pp.
Diffstat (limited to 'testpar/testphdf5.h')
-rw-r--r-- | testpar/testphdf5.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testpar/testphdf5.h b/testpar/testphdf5.h index 14e315e..e085b62 100644 --- a/testpar/testphdf5.h +++ b/testpar/testphdf5.h @@ -187,6 +187,7 @@ void dataset_readInd(void); void dataset_readAll(void); void extend_readInd(void); void extend_readAll(void); +void test_chunk_alloc(void); void compact_dataset(void); void null_dataset(void); void big_dataset(void); |