Update TLS tests to handle LLDB failing to resolve %GS on LLDB

pull/3215/head
Matt 4 months ago
parent e1b6b1f209
commit 37c02a5a1b
No known key found for this signature in database

@ -17,6 +17,11 @@ TLS_I386_BINARY = get_binary("tls.i386.out")
async def test_tls_address_and_command(ctrl: Controller, binary: str):
import pwndbg.aglib.tls
import pwndbg.aglib.vmmap
from pwndbg.dbg import DebuggerType
if pwndbg.dbg.name() == DebuggerType.LLDB and binary == TLS_I386_BINARY:
pytest.skip("TLS commands are flaky in LLDB on i386")
return
await launch_to(ctrl, binary, "break_here")

Loading…
Cancel
Save