You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
24c5296957
llvm-svn: 133972
14 lines
302 B
Python
14 lines
302 B
Python
"""
|
|
Fuzz tests an object after the default construction to make sure it does not crash lldb.
|
|
"""
|
|
|
|
import sys
|
|
import lldb
|
|
|
|
def fuzz_obj(obj):
|
|
obj.Initialize(lldb.SBDebugger.Create(), None, None, 0, "$", "^", True)
|
|
obj.IsActive()
|
|
obj.IsDone()
|
|
obj.SetIsDone(True)
|
|
obj.GetGranularity()
|