brintos

brintos / llvm-project-archived public Read only

0
0
Text · 288 B · 5dd78b1 Raw
15 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.Exists()10    obj.ResolveExecutableLocation()11    obj.GetFilename()12    obj.GetDirectory()13    obj.GetPath(1)14    obj.GetDescription(lldb.SBStream())15