Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OptimDBS
OptimDBS-dependencies
VTK
Commits
f2ccf51e
Commit
f2ccf51e
authored
4 years ago
by
Sankhesh Jhaveri
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab/ci/ctest_exclusions.cmake
+15
-1
15 additions, 1 deletion
.gitlab/ci/ctest_exclusions.cmake
with
15 additions
and
1 deletion
.gitlab/ci/ctest_exclusions.cmake
+
15
−
1
View file @
f2ccf51e
...
...
@@ -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
}
)"
)
...
...
This diff is collapsed.
Click to expand it.
SCHMITT Louise-Amelie
@lschmitt
mentioned in commit
63d1b734
·
4 years ago
mentioned in commit
63d1b734
mentioned in commit 63d1b734db49eabe0e14abbea835530bf1924b86
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment