summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/command_script/mysto.py
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2013-01-22 02:32:56 +0000
committerEnrico Granata <egranata@apple.com>2013-01-22 02:32:56 +0000
commitc50b44801c53b6ba6b204841ad6e7dfd9bd612a2 (patch)
tree5f8a9f5f2b5c0c0e3fb0161117c173ce9b9541e7 /lldb/test/functionalities/command_script/mysto.py
parentb1de8dd986e04124a5c27d354aeedb0b68518476 (diff)
downloadbcm5719-llvm-c50b44801c53b6ba6b204841ad6e7dfd9bd612a2.tar.gz
bcm5719-llvm-c50b44801c53b6ba6b204841ad6e7dfd9bd612a2.zip
lldb.thread is not to be used anymore
llvm-svn: 173119
Diffstat (limited to 'lldb/test/functionalities/command_script/mysto.py')
-rw-r--r--lldb/test/functionalities/command_script/mysto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/command_script/mysto.py b/lldb/test/functionalities/command_script/mysto.py
index 4ad3d425592..7191914731c 100644
--- a/lldb/test/functionalities/command_script/mysto.py
+++ b/lldb/test/functionalities/command_script/mysto.py
@@ -11,7 +11,7 @@ def StepOver(debugger, args, result, dict):
print type(arg_split)
count = int(arg_split[0])
for i in range(0,count):
- lldb.thread.StepOver(lldb.eOnlyThisThread)
+ debugger.GetSelectedTarget().GetProcess().GetSelectedThread().StepOver(lldb.eOnlyThisThread)
print "step<%d>"%i
def __lldb_init_module(debugger, session_dict):
OpenPOWER on IntegriCloud