-
-
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
Enable API tests by default and fix some issues #5223
Conversation
@@ -26,7 +26,7 @@ | |||
option (HDF5_DISABLE_TESTS_REGEX "Regex pattern to set execution of specific tests to DISABLED" "") | |||
mark_as_advanced (HDF5_DISABLE_TESTS_REGEX) | |||
|
|||
option (HDF5_TEST_API "Execute HDF5 API tests" OFF) | |||
option (HDF5_TEST_API "Execute HDF5 API tests" ON) |
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.
Not sure if this change is worth a release note or not
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.
Since it's changing a default, a simple one line should be enough. Definitely not newsletter worthy.
@@ -897,6 +897,12 @@ test_create_hard_link_invalid_params(void H5_ATTR_UNUSED *params) | |||
PART_ERROR(H5Lcreate_hard_across_files); | |||
} | |||
|
|||
if (H5Fclose(ext_file_id) < 0) { |
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.
This file handle needed to be closed before attempting to remove the file on Windows
* Enable API tests by default * Fix leaked file handle in API link test * Fix some versioned API misuses
No description provided.