xref: /llvm-project/lldb/test/API/python_api/default-constructor/sb_lineentry.py (revision 99451b4453688a94c6014cac233d371ab4cc342d)
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.GetStartAddress()
10    obj.GetEndAddress()
11    obj.GetFileSpec()
12    obj.GetLine()
13    obj.GetColumn()
14    obj.GetDescription(lldb.SBStream())
15