-
-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix error in H5Ddebug() #5299
Fix error in H5Ddebug() #5299
Conversation
systems. Add test case for v1 b-trees.
Hmm I guess we changed the settings so we need to re-review after changes? Sorry Matt. Only thing I did was add a note to RELEASE.txt. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow! That's obscure! Good find though. :-)
Looks like the mirror VFD tests are failing due to an old issue that I thought was fixed at this point. |
Test passed on retry. We should keep an eye out for it, but I'll go ahead and merge the PR |
* Fix error in H5Ddebug(). Add h5ls test cases. * Committing clang-format changes * Fix cmake (hopefully) * Fix cmake again (hopefully) * Fix issue with modification times showing up differently on different systems. Add test case for v1 b-trees. * Add cmake for new tests * Add RELEASE.txt entry --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
H5Ddebug() currently does not tag the dataset object header for the metadata cache, causing attempts to iterate over the index (which may require protecting a piece of metadata) to throw an error. This was causing h5ls -va to silently fail to print any chunk addresses. Added tagging and test cases for h5ls to prevent regression.