Skip to content

Commit

Permalink
Fix missing NOT from if check in HL folder (HDFGroup#4036)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored and lrknox committed Mar 4, 2024
1 parent 031a591 commit 1f48f2c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion hl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ if (HDF5_BUILD_EXAMPLES)
endif ()

#-- Build the Unit testing if requested
if (HDF5_EXTERNALLY_CONFIGURED AND BUILD_TESTING AND HDF5_TEST_SERIAL)
if (NOT HDF5_EXTERNALLY_CONFIGURED AND BUILD_TESTING AND HDF5_TEST_SERIAL)
add_subdirectory (test)
endif ()
7 changes: 0 additions & 7 deletions hl/test/test_dset_append.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@
#include "h5hltest.h"
#include "H5DOpublic.h"

#if defined(H5_HAVE_ZLIB_H) && !defined(H5_ZLIB_HEADER)
#define H5_ZLIB_HEADER "zlib.h"
#endif
#if defined(H5_ZLIB_HEADER)
#include H5_ZLIB_HEADER /* "zlib.h" */
#endif

#define FILENAME "test_append.h5"
#define DNAME_NOTSET "dataset_notset"
#define DNAME_UNLIM "dataset_unlim"
Expand Down

0 comments on commit 1f48f2c

Please sign in to comment.