From c50b44801c53b6ba6b204841ad6e7dfd9bd612a2 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Tue, 22 Jan 2013 02:32:56 +0000 Subject: [PATCH] lldb.thread is not to be used anymore llvm-svn: 173119 --- lldb/test/functionalities/command_script/mysto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/functionalities/command_script/mysto.py b/lldb/test/functionalities/command_script/mysto.py index 4ad3d42..7191914 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): -- 2.7.4