diff options
author | Regina Pfeifer <regina@mailbox.org> | 2018-11-20 20:19:45 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2018-11-20 20:23:59 (GMT) |
commit | 15ac4aae0e3199fe8ac7f46cf4eb064cbeb1660d (patch) | |
tree | 2e8cd05c5dadc6614d94cbbc9a47d7f527a86302 /Source/cmCTest.cxx | |
parent | 3125c47d27d4d57cb31e10c4bd658fc1e352299d (diff) | |
download | CMake-15ac4aae0e3199fe8ac7f46cf4eb064cbeb1660d.zip CMake-15ac4aae0e3199fe8ac7f46cf4eb064cbeb1660d.tar.gz CMake-15ac4aae0e3199fe8ac7f46cf4eb064cbeb1660d.tar.bz2 |
Remove warning when no CTestConfig.cmake file exists
Some CTestConfig.cmake files used to set CTEST_PROJECT_NAME only.
Since this variable is no longer used, it is more likely that the
whole file is no longer provided by projects.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index c2b6575..56c71c2 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -649,16 +649,6 @@ bool cmCTest::InitializeFromCommand(cmCTestStartCommand* command) command->SetError(m); return false; } - } else { - cmCTestOptionalLog(this, WARNING, - "Cannot locate CTest configuration: in BuildDirectory: " - << bld_dir_fname << std::endl, - command->ShouldBeQuiet()); - cmCTestOptionalLog( - this, WARNING, - "Cannot locate CTest configuration: in SourceDirectory: " - << src_dir_fname << std::endl, - command->ShouldBeQuiet()); } this->SetCTestConfigurationFromCMakeVariable(mf, "NightlyStartTime", |