From 7718ecc1ddce054f84a5741ff664c241cdbe6da7 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Mon, 2 Jun 2025 13:09:48 +0200 Subject: [PATCH] arm: Disable test-async-sig. This test randomly fails on arm because depending on the place where the signal is received, the backtrace can involve glibc functions such as "__read", which do not have .EXIDX instructions. --- tests/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index ce623b6c..297ab44e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -217,6 +217,10 @@ if ARCH_ARM XFAIL_TESTS += $(XFAIL_TESTS_PTRACE_SINGLESTEP) # UNW_INIT_SIGNAL_FRAME is not implemented on ARM XFAIL_TESTS += Ltest-init-local-signal Gtest-sig-context Ltest-sig-context +# Some glibc functions such as "read" don't have .EXIDX instructions. +# This means that test-async-sig can fail randomly when +# such functions are involved in the backtrace. +XFAIL_TESTS += test-async-sig endif if ARCH_LOONGARCH64