Remove the @expectedFailure decorator since the bug has been fixed.

rdar://problem/9673664

llvm-svn: 136633
This commit is contained in:
Johnny Chen 2011-08-01 18:26:32 +00:00
parent b995119900
commit f57119bc21
1 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,6 @@ class Radar9673644TestCase(TestBase):
self.line = line_number(self.main_source, '// Set breakpoint here.')
# rdar://problem/9673664
@unittest2.expectedFailure
def test_expr_commands(self):
"""The following expression commands should just work."""
self.buildDefault()
@ -35,9 +34,10 @@ class Radar9673644TestCase(TestBase):
# rdar://problem/9673664 lldb expression evaluation problem
self.runCmd('expr char c[] = "foo"; c[0]')
# Fill in an example output here.
# And change self.runCmd() -> self.expect()...
self.expect('expr char c[] = "foo"; c[0]',
substrs = ["'f'"])
# runCmd: expr char c[] = "foo"; c[0]
# output: (char) $0 = 'f'
if __name__ == '__main__':