https://github.com/mauiavalos9-ux created https://github.com/llvm/llvm-project/pull/221851
None >From aee08b784f7d84467c2b41745a32a313356683cc Mon Sep 17 00:00:00 2001 From: mauiavalos9-ux <[email protected]> Date: Mon, 7 Sep 2026 17:51:49 -0600 Subject: [PATCH 1/2] Refactor decorators for test_symbol_file_json_address TODO EN orden --- .../functionalities/json/symbol-file/TestSymbolFileJSON.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py b/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py index 44c039b1e9418..84daa62f741bd 100644 --- a/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py +++ b/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py @@ -13,8 +13,8 @@ def setUp(self): self.source = "main.c" @no_debug_info_test - @skipIfWindows # No 'strip' - @skipIfWasm # Wasm modules have no UUID + @skipIfWindows + @skipIfWasm def test_symbol_file_json_address(self): """Test that 'target symbols add' can load the symbols from a JSON file using file addresses.""" >From 70f4b0eff6851c2da6cf808bcfa091ae01e15d53 Mon Sep 17 00:00:00 2001 From: mauiavalos9-ux <[email protected]> Date: Mon, 7 Sep 2026 17:54:06 -0600 Subject: [PATCH 2/2] Remove skip decorators from test_symbol_file_json_address Removed Windows and WebAssembly skips from the test. --- .../API/functionalities/json/symbol-file/TestSymbolFileJSON.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py b/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py index 84daa62f741bd..0ef92129bc5b2 100644 --- a/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py +++ b/lldb/test/API/functionalities/json/symbol-file/TestSymbolFileJSON.py @@ -13,8 +13,6 @@ def setUp(self): self.source = "main.c" @no_debug_info_test - @skipIfWindows - @skipIfWasm def test_symbol_file_json_address(self): """Test that 'target symbols add' can load the symbols from a JSON file using file addresses.""" _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
