diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-15 12:54:56 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-15 12:54:56 (GMT) |
commit | feb271089eb46657006311632739c80f94762e59 (patch) | |
tree | e63d9cd449dd1954abfca0f4eeb3c664d52d611b | |
parent | 78a4164c4b64b4291a934385268caa8174853074 (diff) | |
download | CMake-feb271089eb46657006311632739c80f94762e59.zip CMake-feb271089eb46657006311632739c80f94762e59.tar.gz CMake-feb271089eb46657006311632739c80f94762e59.tar.bz2 |
ENH: Add logging to improve coverage
-rw-r--r-- | Source/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index d0c874c..f3a604e 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -785,11 +785,13 @@ IF(BUILD_TESTING) "${CMake_BINARY_DIR}/Tests/CTestTest/test.cmake" @ONLY ESCAPE_QUOTES) ADD_TEST(CTestTest ${CMAKE_CTEST_COMMAND} -S "${CMake_BINARY_DIR}/Tests/CTestTest/test.cmake" -V + --output-log "${CMake_BINARY_DIR}/Tests/CTestTest/testOutput.log" ) CONFIGURE_FILE("${CMake_SOURCE_DIR}/Tests/CTestTest2/test.cmake.in" "${CMake_BINARY_DIR}/Tests/CTestTest2/test.cmake" @ONLY ESCAPE_QUOTES) ADD_TEST(CTestTest2 ${CMAKE_CTEST_COMMAND} -S "${CMake_BINARY_DIR}/Tests/CTestTest2/test.cmake" -V + --output-log "${CMake_BINARY_DIR}/Tests/CTestTest/testOutput.log" ) ENDIF (CTEST_TEST_CTEST AND CMAKE_RUN_LONG_TESTS) |