[Lldb-commits] [lldb] r116420 - /lldb/trunk/test/types/AbstractBase.py
Johnny Chen
johnny.chen at apple.com
Wed Oct 13 12:25:42 PDT 2010
Author: johnny
Date: Wed Oct 13 14:25:42 2010
New Revision: 116420
URL: http://llvm.org/viewvc/llvm-project?rev=116420&view=rev
Log:
Fix these comments and the commented out code about 'frame variable -t', too.
Modified:
lldb/trunk/test/types/AbstractBase.py
Modified: lldb/trunk/test/types/AbstractBase.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/AbstractBase.py?rev=116420&r1=116419&r2=116420&view=diff
==============================================================================
--- lldb/trunk/test/types/AbstractBase.py (original)
+++ lldb/trunk/test/types/AbstractBase.py Wed Oct 13 14:25:42 2010
@@ -59,16 +59,16 @@
#print "golden list:", gl
# Bring the program to the point where we can issue a series of
- # 'frame variable' command.
+ # 'frame variable -t' command.
self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
self.runCmd("breakpoint set --name Puts")
self.runCmd("run", RUN_SUCCEEDED)
self.runCmd("thread step-out", STEP_OUT_SUCCEEDED)
- #self.runCmd("frame variable")
+ #self.runCmd("frame variable -t")
# Now iterate through the golden list, comparing against the output from
- # 'frame variable var'.
+ # 'frame variable -t var'.
for var, val in gl:
self.runCmd("frame variable -t %s" % var)
output = self.res.GetOutput()
@@ -119,13 +119,13 @@
#print "golden list:", gl
# Bring the program to the point where we can issue a series of
- # 'frame variable' command.
+ # 'expr' command.
self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
self.runCmd("breakpoint set --name Puts")
self.runCmd("run", RUN_SUCCEEDED)
self.runCmd("thread step-out", STEP_OUT_SUCCEEDED)
- #self.runCmd("frame variable")
+ #self.runCmd("frame variable -t")
# Now iterate through the golden list, comparing against the output from
# 'expr var'.
More information about the lldb-commits
mailing list