commit: d02b4609c2e988640b11ab7fbd95cbef0650882a
Author: sin-ack <sin-ack <AT> protonmail <DOT> com>
AuthorDate: Wed Nov 13 00:01:12 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 14:00:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d02b4609
dev-cpp/wangle: skip a test on arm64
This test fails in the QEMU chroot.
Signed-off-by: sin-ack <sin-ack <AT> protonmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/wangle/wangle-2024.11.04.00.ebuild | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/dev-cpp/wangle/wangle-2024.11.04.00.ebuild
b/dev-cpp/wangle/wangle-2024.11.04.00.ebuild
index 15b6be4d72de..fbe0818c12d4 100644
--- a/dev-cpp/wangle/wangle-2024.11.04.00.ebuild
+++ b/dev-cpp/wangle/wangle-2024.11.04.00.ebuild
@@ -58,5 +58,11 @@ src_test() {
SSLContextManagerTest
)
+ if use arm64; then
+ # This test fails on arm64.
+ # https://github.com/facebook/wangle/issues/241
+ CMAKE_SKIP_TESTS+=(TLSInMemoryTicketProcessorTest)
+ fi
+
cmake_src_test
}