From 761bfda72383a395327e6eae8d729902f7da40a6 Mon Sep 17 00:00:00 2001 From: Aaron Jomy Date: Wed, 19 Aug 2026 21:40:17 +0200 Subject: [PATCH] [test] Drop the arm valgrind gate on the concurrency tests --- test/test_concurrent.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/test/test_concurrent.py b/test/test_concurrent.py index d81a3f0..7c176d0 100644 --- a/test/test_concurrent.py +++ b/test/test_concurrent.py @@ -1,14 +1,5 @@ from pytest import mark, skip -from support import IS_LINUX_ARM, IS_MAC_ARM, IS_MAC_X86, IS_VALGRIND - -# valgrind < 3.26 cannot decode the LDAPRB (FEAT_LRCPC) instructions the JIT -# emits for the threaded tests and SIGILLs the whole process; see -# https://bugs.kde.org/show_bug.cgi?id=476465 -pytestmark = mark.xfail( - condition=IS_VALGRIND and IS_LINUX_ARM, - run=False, - reason="valgrind < 3.26 SIGILLs on JIT-emitted LDAPRB (FEAT_LRCPC)", -) +from support import IS_LINUX_ARM, IS_MAC_ARM, IS_MAC_X86 class TestCONCURRENT: