From f30a85b7005cb332b88d91dfe9ef094ef6249bd9 Mon Sep 17 00:00:00 2001 From: David Spickett Date: Tue, 27 May 2025 11:38:33 +0000 Subject: [PATCH] [lldb][test] Skip unamed symbol test on Arm Same purpose as https://github.com/llvm/llvm-project/pull/141407, comitting this directly to get the bot green sooner. Co-authored-by: Ely Ronnen --- .../python_api/unnamed_symbol_lookup/TestUnnamedSymbolLookup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/API/python_api/unnamed_symbol_lookup/TestUnnamedSymbolLookup.py b/lldb/test/API/python_api/unnamed_symbol_lookup/TestUnnamedSymbolLookup.py index c0438f77fb1d..34a6cabd5d2c 100644 --- a/lldb/test/API/python_api/unnamed_symbol_lookup/TestUnnamedSymbolLookup.py +++ b/lldb/test/API/python_api/unnamed_symbol_lookup/TestUnnamedSymbolLookup.py @@ -10,6 +10,8 @@ from lldbsuite.test import lldbutil # --keep-symbol causes error on Windows: llvm-strip.exe: error: option is not supported for COFF @skipIfWindows +# Unnamed symbols don't get into the .eh_frame section on ARM, so LLDB can't find them. +@skipIf(archs=["arm"]) class TestUnnamedSymbolLookup(TestBase): def test_unnamed_symbol_lookup(self): """Test looking up unnamed symbol synthetic name"""