Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / python_api / default-constructor / sb_symbolcontext.py
blobe46e4714be03c373e44b7e62377f9e07ad480fb9
1 """
2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
3 """
5 import lldb
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())