From f57119bc2137c2e7abcced170b1280ea9243dc62 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 1 Aug 2011 18:26:32 +0000 Subject: [PATCH] Remove the @expectedFailure decorator since the bug has been fixed. rdar://problem/9673664 llvm-svn: 136633 --- .../radar_9673664/TestExprHelpExamples.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py index 49d8434ad97b..145e6c5bcc3c 100644 --- a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py +++ b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py @@ -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__':