diff options
author | David Cole <david.cole@kitware.com> | 2012-08-13 17:26:30 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-08-13 17:26:30 (GMT) |
commit | bed44c2cc1d308166a7c00d5f1b6506ad118cd99 (patch) | |
tree | 174415f0f6cebabf7c050e46575491bc771869bb | |
parent | 408c04e7342ab4ee09b1243a2c460c797f7996cc (diff) | |
parent | 3a17311bc89053f9f71f4a50e95efd1f7f313ef7 (diff) | |
download | CMake-bed44c2cc1d308166a7c00d5f1b6506ad118cd99.zip CMake-bed44c2cc1d308166a7c00d5f1b6506ad118cd99.tar.gz CMake-bed44c2cc1d308166a7c00d5f1b6506ad118cd99.tar.bz2 |
Merge topic 'exclude-ExternalProject-test-for-cygwin-release-script'
3a17311 Release: Temporarily exclude ExternalProject test on cygwin
-rw-r--r-- | Utilities/Release/dash2win64_cygwin.cmake | 8 | ||||
-rwxr-xr-x | Utilities/Release/release_cmake.sh.in | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/Utilities/Release/dash2win64_cygwin.cmake b/Utilities/Release/dash2win64_cygwin.cmake index 78e8df0..663c615 100644 --- a/Utilities/Release/dash2win64_cygwin.cmake +++ b/Utilities/Release/dash2win64_cygwin.cmake @@ -16,4 +16,12 @@ set(CC gcc) set(SCRIPT_NAME dash2win64cygwin) set(GIT_EXTRA "git config core.autocrlf true") get_filename_component(path "${CMAKE_CURRENT_LIST_FILE}" PATH) + +# WARNING: Temporary fix!! This exclusion of the ExternalProject test +# is temporary until we can set up a new cygwin build machine. +# It only fails because of cygwin/non-cygwin "svn" mismatches in this +# particular environment. This is less than ideal, but at least it +# allows us to produce cygwin builds in the short term. +set(EXTRA_CTEST_ARGS "-E ExternalProject") + include(${path}/release_cmake.cmake) diff --git a/Utilities/Release/release_cmake.sh.in b/Utilities/Release/release_cmake.sh.in index 50882c5..b5ff6dd 100755 --- a/Utilities/Release/release_cmake.sh.in +++ b/Utilities/Release/release_cmake.sh.in @@ -121,7 +121,7 @@ check_exit_value $? "Build cmake" || exit 1 if [ -z "@SKIP_TESTS@" ]; then echo "Run cmake tests" - ./bin/ctest --output-on-failure -j @PROCESSORS@ test + ./bin/ctest --output-on-failure -j @PROCESSORS@ @EXTRA_CTEST_ARGS@ check_exit_value $? "Test cmake" || exit 1 fi |