ENH: disable test for vs 70 as devenv randomly segfaults when building the sub-project

This commit is contained in:
Ken Martin 2008-02-01 16:17:06 -05:00
parent 22835a71cd
commit 8f5e85c4cc
1 changed files with 2 additions and 2 deletions

View File

@ -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)