Skip to content
Snippets Groups Projects
Commit 46869d7b authored by Ben Boeckel's avatar Ben Boeckel
Browse files

ci: exclude some precision-sensitive tests on aarch64

parent 478ed0f3
No related merge requests found
......@@ -474,6 +474,16 @@ if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "wheel")
"^VTK::FiltersCellGridPython-TestUnstructuredGridToCellGrid$"
)
endif ()
if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "linux.*_aarch64")
list(APPEND test_exclusions
# floating point precision issues (fma optimizations change results)
# https://gitlab.kitware.com/vtk/vtk/-/issues/19418
"^VTK::FiltersCorePython-TestSphereTreeFilter$"
"^VTK::RenderingAnnotationPython-xyPlot$"
"^VTK::RenderingAnnotationPython-xyPlot2$"
"^VTK::RenderingAnnotationPython-xyPlot4$"
"^VTK::RenderingCorePython-pickImageData$")
endif ()
if ("$ENV{CMAKE_CONFIGURATION}" MATCHES "macos.*_x86_64")
list(APPEND test_exclusions
# MacOS OpenGL issue (intermittent). See #19372.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment