Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f2ccf51e authored by Sankhesh Jhaveri's avatar Sankhesh Jhaveri
Browse files

Exclude some of the QtQuick tests on problem CI machines

parent 9cb71b63
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,9 @@ if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "fedora")
# Numerical problems?
"^VTK::FiltersOpenTURNSCxx-TestOTKernelSmoothing$"
# QtQuick event loop issue with CI VNC
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderItemWidget$"
# These tests all seem to have some problem with the rendering order of
# some components of the scenes that are being tested. Needs investigation.
# https://gitlab.kitware.com/vtk/vtk/-/issues/18098
......@@ -146,7 +149,10 @@ if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "windows")
"^VTK::GUISupportQtCxx-TestQVTKOpenGLWidgetPicking$"
"^VTK::GUISupportQtCxx-TestQVTKOpenGLWidgetQWidgetWidget$"
"^VTK::GUISupportQtCxx-TestQVTKOpenGLWidgetWithDisabledInteractor$"
"^VTK::GUISupportQtCxx-TestQVTKOpenGLWidgetWithMSAA$")
"^VTK::GUISupportQtCxx-TestQVTKOpenGLWidgetWithMSAA$"
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderItem$"
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderItemWidget$"
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderWindow$")
endif ()
if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "osmesa")
......@@ -158,6 +164,14 @@ if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "osmesa")
"^VTK::RenderingOpenGL2Cxx-TestGlyph3DMapperPickability$")
endif ()
if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "macos")
list(APPEND test_exclusions
# QtQuick event loop / OpenGL context issues. Needs investigation
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderItem$"
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderItemWidget$"
"^VTK::GUISupportQtQuickCxx-TestQQuickVTKRenderWindow$")
endif ()
string(REPLACE ";" "|" test_exclusions "${test_exclusions}")
if (test_exclusions)
set(test_exclusions "(${test_exclusions})")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment