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.
This commit is contained in:
Brad King 2016-03-17 09:21:59 -04:00
parent e903a9fc55
commit c089485d21
1 changed files with 4 additions and 0 deletions

View File

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