Browse Source

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

Ken Martin 18 years ago
parent
commit
8f5e85c4cc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Tests/CMakeLists.txt

+ 2 - 2
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)