2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
17 obj
.SetCondition("1 == 2")
19 obj
.SetAutoContinue(False)
21 obj
.SetThreadID(0x1234)
23 obj
.SetThreadIndex(10)
25 obj
.SetThreadName("AThread")
27 obj
.SetQueueName("AQueue")
29 obj
.SetScriptCallbackFunction("AFunction")
30 commands
= lldb
.SBStringList()
31 obj
.SetCommandLineCommands(commands
)
32 obj
.GetCommandLineCommands(commands
)
33 obj
.SetScriptCallbackBody("Insert Python Code here")
35 obj
.SetAllowList(False)
37 obj
.SetAllowDelete(False)
39 obj
.SetAllowDisable(False)
40 stream
= lldb
.SBStream()
41 obj
.GetDescription(stream
)