diff options
author | Brad King <brad.king@kitware.com> | 2022-02-04 16:58:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-07 16:51:40 (GMT) |
commit | 4e88a4228e542e6b4d9c910de1b0b1d11e1372e3 (patch) | |
tree | 9df2053014245ff6551f785d28cb0e70abcc1fb6 | |
parent | dd6ca78800fc089c45bcf4b67441556e80c3f8ec (diff) | |
download | CMake-4e88a4228e542e6b4d9c910de1b0b1d11e1372e3.zip CMake-4e88a4228e542e6b4d9c910de1b0b1d11e1372e3.tar.gz CMake-4e88a4228e542e6b4d9c910de1b0b1d11e1372e3.tar.bz2 |
Tests: Remove unused CVS tool discovery
Since commit b819ee85c0 (BUG: Oops. Left chunk of junk at the bottom of
the main Tests CMakeLists.txt file..., 2009-07-24, v2.8.0~385) the
`do_cvs_tests` variable is not used in `Tests/CMakeLists.txt`.
-rw-r--r-- | Tests/CMakeLists.txt | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index fa6cd96..3c5ea67 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -294,26 +294,6 @@ if(BUILD_TESTING) mark_as_advanced(CTEST_TEST_CTEST) endif () - # Should tests that use CVS be run? - # - set(do_cvs_tests 0) - - if(EXISTS ${CMAKE_ROOT}/Modules/FindCVS.cmake) - find_package(CVS QUIET) - else() - find_program(CVS_EXECUTABLE NAMES cvs) - endif() - - if(CVS_EXECUTABLE) - set(do_cvs_tests 1) - endif() - - if(do_cvs_tests AND NOT UNIX) - if("${CVS_EXECUTABLE}" MATCHES "cygwin") - set(do_cvs_tests 0) - endif() - endif() - # Should CPack tests be run? By default, yes, but... # # Disable packaging test on Apple 10.3 and below. PackageMaker starts |