1 """ 2 Fuzz tests an object after the default construction to make sure it does not crash lldb. 3 """ 4 5 import sys 6 import lldb 7 8 def 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