diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-09-15 21:52:59 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-09-15 21:52:59 +0000 |
commit | b08b736de9a92aa7e9ee5d4359cd5a6d15caf841 (patch) | |
tree | 3c25d989e942f36334cad5049dad939482adfd39 /lldb/test/python_api/default-constructor/sb_debugger.py | |
parent | 6b302955b1da196aee40487fbc9a5891a5271fca (diff) | |
download | bcm5719-llvm-b08b736de9a92aa7e9ee5d4359cd5a6d15caf841.tar.gz bcm5719-llvm-b08b736de9a92aa7e9ee5d4359cd5a6d15caf841.zip |
Add fuzz calls to newly added methods: GetAsync() and SetSelectedTarget(SBTarget).
llvm-svn: 139855
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() |