diff options
author | David Cole <david.cole@kitware.com> | 2011-06-04 23:52:45 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-06-04 23:54:49 (GMT) |
commit | 51e16c05f7c4e70d8bbf97a13243b1f1cfffa2d7 (patch) | |
tree | bc1eb0d8e5f1b0039923efdabc80fd83fac0f5ab | |
parent | 41f962a2cb239616e75f5de12d8987609dc4cde6 (diff) | |
download | CMake-51e16c05f7c4e70d8bbf97a13243b1f1cfffa2d7.zip CMake-51e16c05f7c4e70d8bbf97a13243b1f1cfffa2d7.tar.gz CMake-51e16c05f7c4e70d8bbf97a13243b1f1cfffa2d7.tar.bz2 |
BundleUtilities: Avoid test on Watcom dashboards (#12034)
-rw-r--r-- | Tests/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index d840b96..8149847 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -198,6 +198,7 @@ IF(BUILD_TESTING) if(MSVC OR CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME MATCHES "Darwin") + if(NOT "${CMAKE_TEST_GENERATOR}" STREQUAL "Watcom WMake") ADD_TEST(BundleUtilities ${CMAKE_CTEST_COMMAND} --build-and-test "${CMake_SOURCE_DIR}/Tests/BundleUtilities" @@ -207,9 +208,8 @@ IF(BUILD_TESTING) --build-project BundleUtilities ) LIST(APPEND TEST_BUILD_DIRS "${CMake_BINARY_DIR}/Tests/BundleUtilities") - endif(MSVC OR - CMAKE_SYSTEM_NAME MATCHES "Linux" OR - CMAKE_SYSTEM_NAME MATCHES "Darwin") + endif() + endif() SET(CMAKE_BUILD_TEST_SOURCE_DIR "${CMake_SOURCE_DIR}/Tests/COnly") SET(CMAKE_BUILD_TEST_BINARY_DIR "${CMake_BINARY_DIR}/Tests/CMakeBuildCOnly") |