Lines Matching defs:lldb

1 """Test that lldb functions correctly after the inferior has crashed."""
5 import lldb, lldbutil
14 """Test that lldb reliably catches the inferior crashing (command)."""
19 """Test that lldb reliably catches the inferior crashing (command)."""
25 """Test that lldb reliably reads registers from the inferior after crashing (command)."""
30 """Test that lldb reliably reads registers from the inferior after crashing (command)."""
36 """Test that lldb reliably catches the inferior crashing (Python API)."""
42 """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
47 """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
53 """Test that lldb functions correctly after stepping through a crash."""
70 """Test that lldb functions correctly after stepping through a crash."""
76 """Test that lldb expressions work before and after stepping after a crash."""
82 """Test that lldb expressions work before and after stepping after a crash."""
109 """Inferior crashes upon launching; lldb should catch the event and stop."""
122 """Inferior crashes upon launching; lldb should catch the event and stop."""
132 if process.GetState() != lldb.eStateStopped:
137 thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonException)
145 """Test that lldb can read registers after crashing."""
152 # lldb should be able to read from registers from the inferior after crashing.
157 """Test that the lldb expression interpreter can read symbols after crashing."""
164 # The lldb expression interpreter should be able to read from addresses of the inferior after a crash.
172 """Test that lldb functions correctly after stepping through a crash."""
186 # The lldb expression interpreter should be able to read from addresses of the inferior after a crash.
192 # lldb should be able to read from registers from the inferior after crashing.
202 """Test that lldb behaves correctly when stepping after a crash."""
213 """Test that lldb expressions work before and after stepping after a crash."""
220 # The lldb expression interpreter should be able to read from addresses of the inferior after a crash.
227 # The lldb expression interpreter should be able to read from addresses of the inferior after a crash.
234 lldb.SBDebugger.Initialize()
235 atexit.register(lambda: lldb.SBDebugger.Terminate())