diff options
author | Ken Martin <ken.martin@kitware.com> | 2008-02-01 21:17:06 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2008-02-01 21:17:06 (GMT) |
commit | 8f5e85c4ccb4b348b7ab3bf74dbf0d94a53c6d34 (patch) | |
tree | a9fcea62e5615c48c5784b96dc5fc7b9c9417594 /Tests | |
parent | 22835a71cd0948bc839011da1df72fd6b8233047 (diff) | |
download | CMake-8f5e85c4ccb4b348b7ab3bf74dbf0d94a53c6d34.zip CMake-8f5e85c4ccb4b348b7ab3bf74dbf0d94a53c6d34.tar.gz CMake-8f5e85c4ccb4b348b7ab3bf74dbf0d94a53c6d34.tar.bz2 |
ENH: disable test for vs 70 as devenv randomly segfaults when building the sub-project
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index f6d88e4..8fc850f 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -55,7 +55,7 @@ IF(BUILD_TESTING) # test for correct sub-project generation # not implemented in VS6 or Xcode - IF(NOT MSVC60 AND NOT XCODE) + IF(NOT MSVC60 AND NOT XCODE AND NOT MSVC70) # run cmake and configure all of SubProject # but only build the independent executable car ADD_TEST(SubProject ${CMAKE_CTEST_COMMAND} @@ -84,7 +84,7 @@ IF(BUILD_TESTING) --build-target foo --test-command foo ) - ENDIF(NOT MSVC60 AND NOT XCODE) + ENDIF(NOT MSVC60 AND NOT XCODE AND NOT MSVC70) IF (CMAKE_STRICT) ADD_TEST_MACRO(DocTest DocTest) |