summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/command_script/mysto.py
diff options
context:
space:
mode:
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