diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-07-20 14:58:50 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-07-20 14:58:50 (GMT) |
commit | 0902d2918e1da15832f1d141d534734cc5f62d84 (patch) | |
tree | 44f719afd4a6808b4d36ec619f4d895aab2060ff /Tests | |
parent | 1b0b6b56e46bda59aef32f05bb07bce2b349e4df (diff) | |
download | CMake-0902d2918e1da15832f1d141d534734cc5f62d84.zip CMake-0902d2918e1da15832f1d141d534734cc5f62d84.tar.gz CMake-0902d2918e1da15832f1d141d534734cc5f62d84.tar.bz2 |
ENH: set expected failure for tests
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 5be6911..5bf4c82 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -551,6 +551,15 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel IF("${PREVIOUS_TIMEOUT}" MATCHES NOTFOUND) SET_TESTS_PROPERTIES(ExternalProject PROPERTIES TIMEOUT 1000) ENDIF("${PREVIOUS_TIMEOUT}" MATCHES NOTFOUND) + # CustomCommand and ExternalProject fail because of this bug: + # http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=473709 + # so for this version of the compiler with the IDE expect failure + IF("${MSVC_VERSION}" EQUAL 1600 + AND "${CMAKE_TEST_GENERATOR}" + MATCHES "Visual Studio 10" ) + SET_TESTS_PROPERTIES(ExternalProject PROPERTIES WILL_FAIL TRUE) + SET_TESTS_PROPERTIES(CustomCommand PROPERTIES WILL_FAIL TRUE) + ENDIF() # do each of the tutorial steps FOREACH(STP RANGE 1 7) |