From 03fa6b8e196beee25a95ec0fca57348a3653031a Mon Sep 17 00:00:00 2001 From: Michael Migliore Date: Mon, 23 Dec 2024 09:07:48 +0100 Subject: [PATCH] skip apple --- application/testing/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/application/testing/CMakeLists.txt b/application/testing/CMakeLists.txt index 123b5bd36c..c15306ad3f 100644 --- a/application/testing/CMakeLists.txt +++ b/application/testing/CMakeLists.txt @@ -402,7 +402,9 @@ f3d_test(NAME TestVerboseAnimationWrongAnimationTimeLow DATA BoxAnimated.gltf AR # Armature test f3d_test(NAME TestGLTFRigNoArmature DATA RiggedFigure.glb ARGS --animation-time=1) if(VTK_VERSION VERSION_GREATER_EQUAL 9.4.20241219) - f3d_test(NAME TestGLTFRigArmature DATA RiggedFigure.glb ARGS --animation-time=1 --armature) + if (NOT APPLE) # Issue with line rendering on macOS sometimes + f3d_test(NAME TestGLTFRigArmature DATA RiggedFigure.glb ARGS --animation-time=1 --armature) + endif() f3d_test(NAME TestGLTFRigArmatureSphereTube DATA RiggedFigure.glb ARGS --animation-time=1 --armature --point-size=20 --line-width=5) endif()