1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-19 19:43:23 +08:00

Tests: Add missing BUILD_TESTING conditions

We should not call `add_test` unless `BUILD_TESTING` is enabled.

Fixes: #18500
This commit is contained in:
Brad King
2018-10-24 12:01:36 -04:00
parent ec13ba36b5
commit a834bcaa91
2 changed files with 5 additions and 4 deletions

View File

@@ -791,9 +791,10 @@ if(NOT CMake_TEST_EXTERNAL_CMAKE)
endif() endif()
endif() endif()
# add a test if(BUILD_TESTING)
add_test(SystemInformationNew "${CMAKE_CMAKE_COMMAND}" add_test(SystemInformationNew "${CMAKE_CMAKE_COMMAND}"
--system-information -G "${CMAKE_GENERATOR}" ) --system-information -G "${CMAKE_GENERATOR}" )
endif()
if(NOT CMake_TEST_EXTERNAL_CMAKE) if(NOT CMake_TEST_EXTERNAL_CMAKE)
# Install license file as it requires. # Install license file as it requires.

View File

@@ -1289,7 +1289,7 @@ endif()
add_executable(LIBCURL curltest.c) add_executable(LIBCURL curltest.c)
target_link_libraries(LIBCURL cmcurl) target_link_libraries(LIBCURL cmcurl)
if(CMAKE_CURL_TEST_URL) if(BUILD_TESTING AND CMAKE_CURL_TEST_URL)
add_test(curl LIBCURL ${CMAKE_CURL_TEST_URL}) add_test(curl LIBCURL ${CMAKE_CURL_TEST_URL})
endif() endif()