diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-04-12 20:25:27 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-04-12 20:25:27 (GMT) |
commit | 6fc1d0535960edf24e66ca14afc27b31ec2320db (patch) | |
tree | 3b5cae467443e375c05433294137fe45c0d44717 /fortran/test | |
parent | 1285f6734c5916ce54104e05163b4114655d7954 (diff) | |
download | hdf5-6fc1d0535960edf24e66ca14afc27b31ec2320db.zip hdf5-6fc1d0535960edf24e66ca14afc27b31ec2320db.tar.gz hdf5-6fc1d0535960edf24e66ca14afc27b31ec2320db.tar.bz2 |
[svn-r20487] Bug 1386 - allow dimension size to be zero even though it isn't unlimited. This is a follow-up checkin for
r20440 and r20469:
1. The dataspace code has another bug - when the maximal dimension isn't passed in for H5Sset_extent_simple, it
is supposed to be same as the dimension. The current library sets NULL to it. I corrected it and added a
test case to it.
2. I corrected the tests of Fortran and C++ for this problem.
Tested on heiwa, jam, and amani.
Diffstat (limited to 'fortran/test')
-rw-r--r-- | fortran/test/tH5S.f90 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fortran/test/tH5S.f90 b/fortran/test/tH5S.f90 index 29943bb..b56d3a7 100644 --- a/fortran/test/tH5S.f90 +++ b/fortran/test/tH5S.f90 @@ -163,7 +163,13 @@ IF (classtype .NE. 1) write(*,*)"class type not H5S_SIMPLE_f" ! - !set the copied space to dim2 size. + !set the copied space to none before extend the dimensions. + ! + CALL h5sset_extent_none_f(space2_id, error) + CALL check("h5sset_extent_none_f", error, total_error) + + ! + !set the copied space to dim2 size. ! CALL h5sset_extent_simple_f(space2_id, rank2, dims2, maxdims2, error) CALL check("h5sset_extent_simple_f", error, total_error) |