Skip to content
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
6 changes: 4 additions & 2 deletions h5_test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014,
# 2015, 2016, 2017, 2018
# 2015, 2016, 2017, 2018, 2026
# University Corporation for Atmospheric Research/Unidata.

# See netcdf-c/COPYRIGHT file for more info.
Expand Down Expand Up @@ -45,7 +45,9 @@ ENDIF()
if(NETCDF_ENABLE_PLUGINS)
if(NETCDF_ENABLE_FILTER_ZSTD)
build_bin_test(tst_h_zstd)
add_sh_test(h5_test run_h5_zstd_tests)
if(NETCDF_BUILD_UTILITIES)
add_sh_test(h5_test run_h5_zstd_tests)
endif()
endif()
endif()

Expand Down
2 changes: 2 additions & 0 deletions h5_test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ endif
if NETCDF_ENABLE_PLUGINS
if HAVE_ZSTD
check_PROGRAMS += tst_h_zstd
if NETCDF_BUILD_UTILITIES
TESTS += run_h5_zstd_tests.sh
endif # NETCDF_BUILD_UTILITIES
endif # HAVE_ZSTD
endif # NETCDF_ENABLE_PLUGINS

Expand Down
4 changes: 3 additions & 1 deletion unit_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ IF(NETCDF_ENABLE_HDF5)
add_bin_test(unit_test tst_nc4internal)
ENDIF(NOT WIN32)
build_bin_test(tst_reclaim ${XGETOPTSRC})
add_sh_test(unit_test run_reclaim_tests)
if(NETCDF_BUILD_UTILITIES)
add_sh_test(unit_test run_reclaim_tests)
endif()
if(NETCDF_ENABLE_NCZARR_FILTERS)
build_bin_test(tst_pluginpaths ${XGETOPTSRC})
add_sh_test(unit_test run_pluginpaths)
Expand Down
Loading