diff options
author | Brad King <brad.king@kitware.com> | 2016-03-17 13:21:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-17 13:32:53 (GMT) |
commit | c089485d2131c7074c931b99044b8d00d498f414 (patch) | |
tree | 862947b4a19ee5136c81841701ab6aa45c480267 /Utilities | |
parent | e903a9fc55a1a8d1e6cc681f8d2e98bb74566ec8 (diff) | |
download | CMake-c089485d2131c7074c931b99044b8d00d498f414.zip CMake-c089485d2131c7074c931b99044b8d00d498f414.tar.gz CMake-c089485d2131c7074c931b99044b8d00d498f414.tar.bz2 |
Utilities/Release: Skip spurious Qt5Autogen test for nightly binary
This test fails spuriously too often and prevents the nightly binary
from finishing. Simply skip it for the nightly binary to allow it
to complete more regularly.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/Release/win32_release.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/Release/win32_release.cmake b/Utilities/Release/win32_release.cmake index f25d638..1d3ec86 100644 --- a/Utilities/Release/win32_release.cmake +++ b/Utilities/Release/win32_release.cmake @@ -25,4 +25,8 @@ set(CXXFLAGS "${ppflags}") set(ENV ". ~/rel/env") get_filename_component(path "${CMAKE_CURRENT_LIST_FILE}" PATH) set(GIT_EXTRA "git config core.autocrlf true") +if(CMAKE_CREATE_VERSION STREQUAL "nightly") + # Some tests fail spuriously too often. + set(EXTRA_CTEST_ARGS "-E Qt5Autogen") +endif() include(${path}/release_cmake.cmake) |