diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-11-02 17:06:08 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-11-02 17:06:08 +0000 |
commit | 9a4c23635b8cfdaaf510c2a3519e786c54502908 (patch) | |
tree | 0fb87c260e744a4515c8dbfe52277bf5859330fe | |
parent | 94f2a2578ca1c6f05ecdb540a8bd2503270d2599 (diff) | |
download | bcm5719-llvm-9a4c23635b8cfdaaf510c2a3519e786c54502908.tar.gz bcm5719-llvm-9a4c23635b8cfdaaf510c2a3519e786c54502908.zip |
Remove the reference-related variable displays that now pass from the 'notnow' set.
The failures that remain are:
# 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'])
llvm-svn: 118021
-rw-r--r-- | lldb/test/types/AbstractBase.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/lldb/test/types/AbstractBase.py b/lldb/test/types/AbstractBase.py index fcc07146f3b..1309968e3d0 100644 --- a/lldb/test/types/AbstractBase.py +++ b/lldb/test/types/AbstractBase.py @@ -45,10 +45,17 @@ class GenericTester(TestBase): # # rdar://problem/8471016 frame variable a_ref should display the referenced value as well # rdar://problem/8470987 frame variable a_class_ref.m_a does not work - notnow = set(['a_ref', - 'a_class_ref.m_a', 'a_class_ref.m_b', - 'a_struct_ref.a', 'a_struct_ref.b', - 'a_union_zero_ref.a', 'a_union_nonzero_ref.u.a']) + # notnow = set(['a_ref', + # 'a_class_ref.m_a', 'a_class_ref.m_b', + # 'a_struct_ref.a', 'a_struct_ref.b', + # 'a_union_zero_ref.a', 'a_union_nonzero_ref.u.a']) + # + # 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']) + for line in go.split(os.linesep): match = self.pattern.search(line) if match: @@ -93,7 +100,7 @@ class GenericTester(TestBase): substrs = list(atoms)) # The (var, val) pair must match, too. - nv = (" %s = '%s'" if quotedDisplay else " %s = %s") % (var, val) + nv = ("%s = '%s'" if quotedDisplay else "%s = %s") % (var, val) self.expect(output, Msg(var, val), exe=False, substrs = [nv]) |