Fix these comments and the commented out code about 'frame variable -t', too.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116420 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/types/AbstractBase.py b/test/types/AbstractBase.py
index 19da271..d2c7103 100644
--- a/test/types/AbstractBase.py
+++ b/test/types/AbstractBase.py
@@ -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'.