Author: Raphael Isemann Date: 2020-02-27T10:45:42+01:00 New Revision: 56b03c35ddecf7d096a513b0633ddf6c49286784
URL: https://github.com/llvm/llvm-project/commit/56b03c35ddecf7d096a513b0633ddf6c49286784 DIFF: https://github.com/llvm/llvm-project/commit/56b03c35ddecf7d096a513b0633ddf6c49286784.diff LOG: [lldb] Skip TestWasm.py on sanitized builds until D75200 has landed Added: Modified: lldb/test/API/functionalities/gdb_remote_client/TestWasm.py Removed: ################################################################################ diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py b/lldb/test/API/functionalities/gdb_remote_client/TestWasm.py index 859a9176c417..7a2346c21a07 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 @@ def tearDown(self): lldb.DBG.SetSelectedPlatform(self._initial_platform) super(TestWasm, self).tearDown() + @skipIfAsan @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""" @@ -137,6 +138,7 @@ def test_load_module_with_embedded_symbols_from_remote(self): self.assertEquals(load_address | debug_line_section.GetFileOffset(), debug_line_section.GetLoadAddress(target)) + @skipIfAsan @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""" @@ -188,6 +190,7 @@ def test_load_module_with_stripped_symbols_from_remote(self): self.assertEquals(LLDB_INVALID_ADDRESS, debug_line_section.GetLoadAddress(target)) + @skipIfAsan @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""" _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits