Skip to content
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

Don't install h5tools_test_utils test program on system #3793

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions release_docs/RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -815,6 +815,16 @@ Bug Fixes since HDF5-1.14.0 release

Configuration
-------------
- Fixed an issue where the h5tools_test_utils test program was being
installed on the system for Autotools builds of HDF5

The h5tools_test_utils test program was mistakenly added to bin_PROGRAMS
in its Makefile.am configuration file, causing the executable to be
installed on the system. The executable is now added to noinst_PROGRAMS
instead and will no longer be installed on the system for Autotools builds
of HDF5. The CMake configuration code already avoids installing the
executable on the system.

- Fixed a configuration issue that prevented building of the Subfiling VFD on macOS

Checks were added to the CMake and Autotools code to verify that CLOCK_MONOTONIC_COARSE,
Expand Down
2 changes: 1 addition & 1 deletion tools/libtest/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ LDADD=$(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5)


# main target
bin_PROGRAMS=h5tools_test_utils
noinst_PROGRAMS=h5tools_test_utils
# check_PROGRAMS=$(TEST_PROG)


Expand Down