[Lldb-commits] [lldb] r118081 - /lldb/trunk/test/types/AbstractBase.py

Johnny Chen johnny.chen at apple.com
Tue Nov 2 14:43:50 PDT 2010


Author: johnny
Date: Tue Nov  2 16:43:50 2010
New Revision: 118081

URL: http://llvm.org/viewvc/llvm-project?rev=118081&view=rev
Log:
The remaining reference-related variable display failures have been fixed.
Comment out the filtering code.  The next check in will clean up the test case
by wiping off the filtering related logic.

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=118081&r1=118080&r2=118081&view=diff
==============================================================================
--- lldb/trunk/test/types/AbstractBase.py (original)
+++ lldb/trunk/test/types/AbstractBase.py Tue Nov  2 16:43:50 2010
@@ -52,16 +52,16 @@
         #
         # rdar://problem/8620735 test/types: frame variable -t a_class_ref.m_b fails
         # The reference type related failures that remain are:
-        notnow = set(['a_class_ref.m_b',
-                      'a_struct_ref.b',
-                      'a_union_nonzero_ref.u.a'])
+        # notnow = set(['a_class_ref.m_b',
+        #               'a_struct_ref.b',
+        #               'a_union_nonzero_ref.u.a'])
 
         for line in go.split(os.linesep):
             match = self.pattern.search(line)
             if match:
                 var, val = match.group(1), match.group(2)
-                if var in notnow:
-                    continue
+                # if var in notnow:
+                #     continue
                 gl.append((var, val))
         #print "golden list:", gl
 
@@ -80,7 +80,7 @@
             self.runCmd("frame variable -t %s" % var)
             output = self.res.GetOutput()
             
-            # The input type is in a canonical form as a set named atoms.
+            # The input type is in a canonical form as a set of named atoms.
             # The display type string must conatin each and every element.
             #
             # Example:





More information about the lldb-commits mailing list