Просмотр исходного кода

Utilities/Release: Suppress KWSys ConsoleBuf test on Windows binaries

The test fails spuriously too often.  Additional work on the test
will be needed to make it more reliable.  For now just skip the
test when building nightly binaries so they can complete.
Brad King 9 лет назад
Родитель
Сommit
ea23db00f4
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      Utilities/Release/win32_release.cmake
  2. 1 1
      Utilities/Release/win64_release.cmake

+ 1 - 1
Utilities/Release/win32_release.cmake

@@ -27,6 +27,6 @@ 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")
+  set(EXTRA_CTEST_ARGS "-E 'Qt5Autogen|ConsoleBuf'")
 endif()
 include(${path}/release_cmake.cmake)

+ 1 - 1
Utilities/Release/win64_release.cmake

@@ -28,6 +28,6 @@ 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")
+  set(EXTRA_CTEST_ARGS "-E 'Qt5Autogen|ConsoleBuf'")
 endif()
 include(${path}/release_cmake.cmake)