diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py b/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py index 8929e0e44e62..859a9176c417 100644 --- a/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py +++ b/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py @@ -94,6 +94,7 @@ class TestWasm(GDBRemoteTestBase): lldb.DBG.SetSelectedPlatform(self._initial_platform) super(TestWasm, self).tearDown() + @skipIfXmlSupportMissing def test_load_module_with_embedded_symbols_from_remote(self): """Test connecting to a WebAssembly engine via GDB-remote and loading a Wasm module with embedded DWARF symbols""" @@ -136,6 +137,7 @@ class TestWasm(GDBRemoteTestBase): self.assertEquals(load_address | debug_line_section.GetFileOffset(), debug_line_section.GetLoadAddress(target)) + @skipIfXmlSupportMissing def test_load_module_with_stripped_symbols_from_remote(self): """Test connecting to a WebAssembly engine via GDB-remote and loading a Wasm module with symbols stripped into a separate Wasm file""" @@ -186,6 +188,7 @@ class TestWasm(GDBRemoteTestBase): self.assertEquals(LLDB_INVALID_ADDRESS, debug_line_section.GetLoadAddress(target)) + @skipIfXmlSupportMissing def test_load_module_from_file(self): """Test connecting to a WebAssembly engine via GDB-remote and loading a Wasm module from a file"""