2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
10 obj
.GetStopReasonDataCount()
11 obj
.GetStopReasonDataAtIndex(100)
12 obj
.GetStopDescription(256)
17 obj
.StepOver(lldb
.eOnlyDuringStepping
)
18 obj
.StepInto(lldb
.eOnlyDuringStepping
)
20 frame
= lldb
.SBFrame()
21 obj
.StepOutOfFrame(frame
)
22 obj
.StepInstruction(True)
23 filespec
= lldb
.SBFileSpec()
24 obj
.StepOverUntil(frame
, filespec
, 1234)
25 obj
.RunToAddress(0xABCD)
30 obj
.GetFrameAtIndex(200)
31 obj
.GetSelectedFrame()
32 obj
.SetSelectedFrame(999)
34 obj
.GetDescription(lldb
.SBStream())