brintos

brintos / llvm-project-archived public Read only

0
0
Text · 382 B · 299ca08 Raw
18 lines · python
1"""2Fuzz tests an object after the default construction to make sure it does not crash lldb.3"""4 5import lldb6 7 8def fuzz_obj(obj):9    obj.IsInlined()10    obj.GetInlinedName()11    obj.GetInlinedCallSiteFile()12    obj.GetInlinedCallSiteLine()13    obj.GetInlinedCallSiteColumn()14    obj.GetParent()15    obj.GetSibling()16    obj.GetFirstChild()17    obj.GetDescription(lldb.SBStream())18