Gate two more DAOS-specific known gaps on connector name#70
Open
brtnfld wants to merge 1 commit into
Open
Conversation
- test_file_open_overlap (vol_file_test.c): H5Fget_obj_count(file_id, H5F_OBJ_LOCAL | H5F_OBJ_ALL) over-counts for the DAOS connector once a dataset is created in the file - same root cause already documented on H5Fget_obj_count_types in test_get_file_obj_count(). - H5Ovisit_file / H5Ovisit_by_name_file (vol_object_test.c): H5Ovisit3(_by_name) by creation order on a group without creation-order tracking enabled (the root group here) isn't handled by the DAOS connector; tracked separately (best-effort-index-fix branch).
brtnfld
added a commit
to brtnfld/vol-daos
that referenced
this pull request
Jul 7, 2026
…of skipping it h5vl_test doesn't crash or cascade - the prior run (before it was excluded) completed with 807/896 (90%) internal checks passing; the ctest entry was only marked FAILED because the driver treats any "FAILED" substring in output as fatal, with no way to mark individual checks as known-broken from outside the test binary. Gate the two specific failing checks (overlapping-file-opens object count, and H5Ovisit(_by_name) by creation order on an untracked root group) on the connector name in vol-tests itself (HDFGroup/vol-tests#70), matching the existing pattern already used in that file. .gitmodules points at the fork branch until the PR merges upstream. Revert the h5vl_test PART-mode split and CI exclusion from the last two commits - no longer needed since h5vl_test runs clean as a single test now.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Follow-up to #67 - two more DAOS-connector-specific gaps found while running the full suite against a live DAOS instance in HDFGroup/vol-daos#71:
test_file_open_overlap(vol_file_test.c):H5Fget_obj_count(file_id, H5F_OBJ_LOCAL | H5F_OBJ_ALL)over-counts for the DAOS connector once a dataset is created in the file - same root cause already documented onH5Fget_obj_count_typesintest_get_file_obj_count().H5Ovisit_file/H5Ovisit_by_name_file(vol_object_test.c):H5Ovisit3/H5Ovisit_by_name3by creation order on a group without creation-order tracking enabled (the root group, in this case) isn't handled by the DAOS connector; tracked separately in the connector repo.Both are gated on
strcmp(vol_name, "daos") == 0, matching the existing pattern in these files, so no other VOL connector's coverage is affected.