forked from OSchip/llvm-project
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. llvm-svn: 118081
This commit is contained in:
parent
f8343f87e7
commit
fa3fa41d09
|
@ -52,16 +52,16 @@ class GenericTester(TestBase):
|
|||
#
|
||||
# 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 @@ class GenericTester(TestBase):
|
|||
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:
|
||||
|
|
Loading…
Reference in New Issue