-
Notifications
You must be signed in to change notification settings - Fork 11
Add real DAOS-backed CI (build + test against a live DAOS instance) #71
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
Open
brtnfld
wants to merge
16
commits into
HDFGroup:master
Choose a base branch
from
brtnfld:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
c04cf77
removed empty prints
brtnfld 995da47
adjusted print widths
brtnfld 5453e77
Merge remote-tracking branch 'upstream/master'
brtnfld e5ffd44
ci: add DAOS-backed CI job (build DAOS + HDF5 1.14.6/develop, run VOL…
brtnfld 0b50093
fix: correct connector bugs and HDF5 2.0 compatibility issues found v…
brtnfld 19b6300
test: bump test/vol submodule to HDFGroup/vol-tests (merged fix PRs)
brtnfld 43de89c
ci: bump clang-format to 17, drop stale version-pin comment
brtnfld 5448cf4
ci: skip h5vl_test pending two known bugs
brtnfld ae17fad
test: make DAOS server target count configurable, split h5vl_test by …
brtnfld a94c6ce
docs: note the DAOS version tested by CI
brtnfld 244ea63
fix: release the connector-ID reference taken in H5_DAOS_G_INIT()
brtnfld b4dc0ad
fix: cache committed datatypes as an open hid_t again, not encoded bytes
brtnfld e87ffde
test: gate h5vl_test's two known-broken checks at the source instead …
brtnfld 3f7821d
fix: restore DAOS_TARGET_OVERSUBSCRIBE, drop nproc-based target count…
brtnfld 2596e9d
fix: release the connector-ID reference taken in H5_DAOS_G_INIT()
brtnfld dc61172
doc: spell out the H5_DAOS_G_INIT() reference-leak edge case
brtnfld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| [submodule "test/vol"] | ||
| path = test/vol | ||
| url = https://github.com/HDFGroup/vol-tests.git | ||
| url = https://github.com/brtnfld/vol-tests.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
There's an argument here as to whether it makes more sense to keep an ID for the datatype around and have to call
H5Tencode()whenever you need the binary form, as opposed to keeping the binary form around and having to callH5Tdecode()whenever you need an ID. In the general case I think keeping the binary form around will be more efficient, but if switching to the binary form is just to avoid having an extra ID around for one of the API tests, I think it's a bit misguided and the test is making incorrect assumptions. There are any number of reasons for a VOL connector to keep an ID around and I believe they should be included in any ID counts made by an application as they aren't internal to HDF5 itself.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.
Fair point - reverted to keeping the copied
hid_tdirectly (as it was before this PR), rather than caching the encoded bytes. A VOL connector holding an ID for its own bookkeeping is legitimate and should be counted; not something worth working around here. b4dc0ad