1""" 2Fuzz tests an object after the default construction to make sure it does not crash lldb. 3""" 4 5import lldb 6 7 8def fuzz_obj(obj): 9 obj.Append(lldb.SBValue()) 10 obj.GetSize() 11 obj.GetValueAtIndex(100) 12 obj.FindValueObjectByUID(200) 13 for val in obj: 14 s = str(val) 15