diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-05-26 16:34:52 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-05-26 16:50:16 (GMT) |
commit | deb5194a32f1693ba939a271acf8662ca69ba93c (patch) | |
tree | 69c15e2ef22d2a615e33e46aa568a2e6a851c783 /Tests | |
parent | f5e673805144b0db697a63b9bad497c4f3ce2198 (diff) | |
download | CMake-deb5194a32f1693ba939a271acf8662ca69ba93c.zip CMake-deb5194a32f1693ba939a271acf8662ca69ba93c.tar.gz CMake-deb5194a32f1693ba939a271acf8662ca69ba93c.tar.bz2 |
tests: avoid a warning for ctresalloc
When testing an installed CMake, this executable does not exist.
Also remove the "or build" because we are expecting it to be built if
the target exists (and is a build failure if it fails there).
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 983f7e4..868eb24 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -416,7 +416,7 @@ endif() if(TARGET ctresalloc) add_RunCMake_test(CTestResourceAllocation -DCTRESALLOC_COMMAND=$<TARGET_FILE:ctresalloc>) else() - message(WARNING "Could not find or build ctresalloc") + message(STATUS "Could not find ctresalloc") endif() find_package(Qt4 QUIET) |