summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2019-08-16 16:52:42 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2019-08-16 17:02:03 (GMT)
commit13a3be1caa3bd32bbf556f4045708a880e54fc7f (patch)
tree97d41acde2b8d6fef26d2bbec1e0c874f9e545ee /release_docs
parent3413544b00a5a0c349e8f29dc98562bef287ef9c (diff)
downloadhdf5-13a3be1caa3bd32bbf556f4045708a880e54fc7f.zip
hdf5-13a3be1caa3bd32bbf556f4045708a880e54fc7f.tar.gz
hdf5-13a3be1caa3bd32bbf556f4045708a880e54fc7f.tar.bz2
Merge pull request #1865 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/HDFFV-10813-swmr-test-fails-on-jelly-with to develop
* commit '538f743c145fbbfa7b1119693efd2ff61b34efae': Changes based on PR feedback. Fix for HDFFV-10813 H5Fset_metadata_read_retry_info() test fails on jelly with PGI/19.
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 2a34397..277804d 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -170,6 +170,23 @@ Bug Fixes since HDF5-1.10.5 release
Library
-------
+ - Fixed the test failure from test_metadata_read_retry_info() in
+ test/swmr.c
+
+ The test failure is due to the incorrect number of bins returned for
+ retry info (info.nbins). The # of bins expected for 101 read attempts
+ is 3 instead of 2. The routine H5F_set_retries() in src/H5Fint.c
+ calculates the # of bins by first obtaining the log10 value for
+ (read attempts - 1). For PGI/19, the log10 value for 100 read attempts
+ is 1.9999999999999998 instead of 2.00000. When casting the log10 value
+ to unsigned later on, the decimal part is chopped off causing the test
+ failure.
+
+ This was fixed by obtaining the rounded integer value (HDceil) for the
+ log10 value of read attempts first before casting the result to unsigned.
+
+ (VC - 2019/8/14, HDFFV-10813)
+
- Fixed an issue where creating a file with non-default file space info
together with library high bound setting to H5F_LIBVER_V18.