brintos

brintos / llvm-project-archived public Read only

0
0
Text · 300 B · e46e471 Raw
16 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.GetModule()10    obj.GetCompileUnit()11    obj.GetFunction()12    obj.GetBlock()13    obj.GetLineEntry()14    obj.GetSymbol()15    obj.GetDescription(lldb.SBStream())16