Lines Matching full:lldb
1 """Test convenience variables when you drop in from lldb prompt into an embedded interpreter."""
5 import lldb
16 """Test convenience variables lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame."""
21 @skipIfLinux # llvm.org/pr14637: this test case fails sometimes because the input prompt "(lldb)" is missing
23 """Test convenience variables lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame."""
34 """Test convenience variables lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame."""
36 prompt = "(lldb) "
57 # Python interpreter, then the lldb interpreter.
60 child.sendline('print lldb.debugger')
65 child.sendline('print lldb.target')
70 child.sendline('print lldb.process')
75 child.sendline('print lldb.thread')
80 child.sendline('print lldb.frame')
88 lldb.SBDebugger.Initialize()
89 atexit.register(lambda: lldb.SBDebugger.Terminate())