forked from OSchip/llvm-project
Add fuzz calls to newly added methods: GetAsync() and SetSelectedTarget(SBTarget).
llvm-svn: 139855
This commit is contained in:
parent
6b302955b1
commit
b08b736de9
|
@ -8,6 +8,7 @@ import lldb
|
|||
def fuzz_obj(obj):
|
||||
obj.SetAsync(True)
|
||||
obj.SetAsync(False)
|
||||
obj.GetAsync()
|
||||
obj.SkipLLDBInitFiles(True)
|
||||
obj.SetInputFileHandle(None, True)
|
||||
obj.SetOutputFileHandle(None, True)
|
||||
|
@ -29,6 +30,7 @@ def fuzz_obj(obj):
|
|||
obj.GetNumTargets()
|
||||
obj.GetSelectedTarget()
|
||||
obj.GetSourceManager()
|
||||
obj.SetSelectedTarget(lldb.SBTarget())
|
||||
obj.SetCurrentPlatformSDKRoot("tmp/sdk-root")
|
||||
obj.DispatchInput(None, None, 0)
|
||||
obj.DispatchInputInterrupt()
|
||||
|
|
Loading…
Reference in New Issue