From e1ea7059430cc274e43dcce9df7cfe699b775abc Mon Sep 17 00:00:00 2001 From: Paul Zander Date: Tue, 11 Nov 2025 13:59:27 +0100 Subject: [PATCH] sci-mathematics/manifold: skip failing tests Closes: https://bugs.gentoo.org/955714 Signed-off-by: Paul Zander Part-of: https://github.com/gentoo/gentoo/pull/44592 Signed-off-by: Sam James --- sci-mathematics/manifold/manifold-3.1.0-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sci-mathematics/manifold/manifold-3.1.0-r1.ebuild b/sci-mathematics/manifold/manifold-3.1.0-r1.ebuild index 6c93ca9542720..3bfcadfb9e6cc 100644 --- a/sci-mathematics/manifold/manifold-3.1.0-r1.ebuild +++ b/sci-mathematics/manifold/manifold-3.1.0-r1.ebuild @@ -83,5 +83,9 @@ src_configure() { } src_test() { - "${BUILD_DIR}/test/manifold_test" || die + if use x86; then + local -x GTEST_FILTER="-Properties.ToleranceSphere:Boolean.AlmostCoplanar:Smooth.RefineQuads:Smooth.ToLength:Smooth.Torus" + fi + + cmake_src_test }