[Lldb-commits] [lldb] r173119 - /lldb/trunk/test/functionalities/command_script/mysto.py

Enrico Granata egranata at apple.com
Mon Jan 21 18:32:56 PST 2013


Author: enrico
Date: Mon Jan 21 20:32:56 2013
New Revision: 173119

URL: http://llvm.org/viewvc/llvm-project?rev=173119&view=rev
Log:
lldb.thread is not to be used anymore

Modified:
    lldb/trunk/test/functionalities/command_script/mysto.py

Modified: lldb/trunk/test/functionalities/command_script/mysto.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_script/mysto.py?rev=173119&r1=173118&r2=173119&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_script/mysto.py (original)
+++ lldb/trunk/test/functionalities/command_script/mysto.py Mon Jan 21 20:32:56 2013
@@ -11,7 +11,7 @@
 	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):





More information about the lldb-commits mailing list