Replace ENABLE_EXTRA_TESTS with NETCDF_ENABLE_EXTRA_TESTS

This commit is contained in:
Kyle Shores 2024-03-18 15:35:47 -05:00
parent 6d1bae4de9
commit cf90d63bf9
2 changed files with 3 additions and 3 deletions

View File

@ -650,8 +650,8 @@ if(ENABLE_PLUGINS)
endif()
# Enable some developer-only tests
option(ENABLE_EXTRA_TESTS "Enable Extra tests. Some may not work because of known issues. Developers only." OFF)
if(ENABLE_EXTRA_TESTS)
option(NETCDF_ENABLE_EXTRA_TESTS "Enable Extra tests. Some may not work because of known issues. Developers only." OFF)
if(NETCDF_ENABLE_EXTRA_TESTS)
set(EXTRA_TESTS ON)
endif()

View File

@ -239,7 +239,7 @@ macro(print_conf_summary)
message("Tests Enabled: ${ENABLE_TESTS}")
if(ENABLE_TESTS)
message(STATUS "DAP Remote Tests: ${NETCDF_ENABLE_DAP_REMOTE_TESTS}")
message(STATUS "Extra Tests: ${ENABLE_EXTRA_TESTS}")
message(STATUS "Extra Tests: ${NETCDF_ENABLE_EXTRA_TESTS}")
message(STATUS "Coverage Tests: ${NETCDF_ENABLE_COVERAGE_TESTS}")
message(STATUS "Parallel Tests: ${ENABLE_PARALLEL_TESTS}")
message(STATUS "Large File Tests: ${ENABLE_LARGE_FILE_TESTS}")