diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2010-06-10 16:25:49 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2010-06-10 16:25:49 (GMT) |
commit | af5ef0c96982be431791ea35d6de8798ffe70254 (patch) | |
tree | 7a73855046a511b496bc79553edc667922f16cd6 /Tests/CMakeLists.txt | |
parent | 86e81b53c196bfd29aa7d877d2fb9e71a6392cc1 (diff) | |
download | CMake-af5ef0c96982be431791ea35d6de8798ffe70254.zip CMake-af5ef0c96982be431791ea35d6de8798ffe70254.tar.gz CMake-af5ef0c96982be431791ea35d6de8798ffe70254.tar.bz2 |
Testing for CTest checksum
Diffstat (limited to 'Tests/CMakeLists.txt')
-rw-r--r-- | Tests/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 330cf9f..c1cc8b8 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -1449,6 +1449,17 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=master -P ${CMake_SOURCE_DIR}/Utilities/ --output-log "${CMake_BINARY_DIR}/Tests/CTestTest3/testOutput.log" ) + CONFIGURE_FILE("${CMake_SOURCE_DIR}/Tests/CTestTestChecksum/test.cmake.in" + "${CMake_BINARY_DIR}/Tests/CTestTestChecksum/test.cmake" @ONLY + ESCAPE_QUOTES) + ADD_TEST(CTestTestChecksum ${CMAKE_CTEST_COMMAND} + -S "${CMake_BINARY_DIR}/Tests/CTestTestChecksum/test.cmake" -V + --output-log + "${CMake_BINARY_DIR}/Tests/CTestTestChecksum/testOutput.log" + ) + SET_TESTS_PROPERTIES(CTestTestChecksum PROPERTIES PASS_REGULAR_EXPRESSION + "Submission failed: Checksum failed for file") + # these tests take a long time, make sure they have it # if timeouts have not already been set GET_TEST_PROPERTY(CTestTest TIMEOUT PREVIOUS_TIMEOUT) |