summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2008-02-01 21:17:06 (GMT)
committerKen Martin <ken.martin@kitware.com>2008-02-01 21:17:06 (GMT)
commit8f5e85c4ccb4b348b7ab3bf74dbf0d94a53c6d34 (patch)
treea9fcea62e5615c48c5784b96dc5fc7b9c9417594 /Tests
parent22835a71cd0948bc839011da1df72fd6b8233047 (diff)
downloadCMake-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.txt4
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)