diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_debugger.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_debugger.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_debugger.py b/lldb/test/python_api/default-constructor/sb_debugger.py index 6d4392abf12..84c9842474c 100644 --- a/lldb/test/python_api/default-constructor/sb_debugger.py +++ b/lldb/test/python_api/default-constructor/sb_debugger.py @@ -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() |