diff options
| author | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-09-24 15:34:13 +0000 |
|---|---|---|
| committer | Ashok Thirumurthi <ashok.thirumurthi@intel.com> | 2013-09-24 15:34:13 +0000 |
| commit | 35729bb1f8250df77c8b2d4025fa87d4db777b3b (patch) | |
| tree | 9344c0de7259def476f3eeed339b79ef3f283869 /lldb/test/functionalities/inferior-assert | |
| parent | fae5f2a9c9e85d89913521ab02d8c75376827332 (diff) | |
| download | bcm5719-llvm-35729bb1f8250df77c8b2d4025fa87d4db777b3b.tar.gz bcm5719-llvm-35729bb1f8250df77c8b2d4025fa87d4db777b3b.zip | |
Adds an option to resolve a symbol from an address that can be used
to build out the symbol table as addresses are used, and implements
the mechanism for ELF to add stripped symbols from eh_frame.
Uses this mechanism to allow disassembly for addresses corresponding
to stripped symbols for ELF, and provide hooks to implement this for
PE COFF.
Also removes eSymbolContextTailCall in favor of an option for
ResolveSymbolContextForAddress for consistency with the documentation
for eSymbolContextEverything. Essentially, this is just an option for
interpreting the so_addr.
llvm-svn: 191307
Diffstat (limited to 'lldb/test/functionalities/inferior-assert')
| -rw-r--r-- | lldb/test/functionalities/inferior-assert/TestInferiorAssert.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py b/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py index 437453a90c2..6787e1710c2 100644 --- a/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py +++ b/lldb/test/functionalities/inferior-assert/TestInferiorAssert.py @@ -32,9 +32,7 @@ class AssertingInferiorTestCase(TestBase): self.buildDwarf() self.inferior_asserting_registers() - @skipIfGcc # Avoid xpasses as the verion of libc used on the gcc buildbot has the required function symbols. - @expectedFailureFreeBSD # ResolveSymbolContextForAddress can fail using ELF with stripped function symbols. - @expectedFailureLinux # ResolveSymbolContextForAddress can fail using ELF with stripped function symbols. + @expectedFailureLinux # Disassembly does not specify '->' for the PC for a non-terminal frame for a function with a tail call. def test_inferior_asserting_disassemble(self): """Test that lldb reliably disassembles frames after asserting (command).""" self.buildDefault() |

