From deac523f7c00d1ab4eb097ebbb9b0cfb8a9508b9 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 15 Nov 2010 17:42:22 +0000 Subject: [PATCH] Remove the @expectedFailure decorator and uncomment 'expression -- i + j" test, as both rdar://problem/8659840 and rdar://problem/8660275 have been fixed. llvm-svn: 119160 --- lldb/test/namespace/TestNamespace.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lldb/test/namespace/TestNamespace.py b/lldb/test/namespace/TestNamespace.py index c059acdf87ab..072ffbb663f9 100644 --- a/lldb/test/namespace/TestNamespace.py +++ b/lldb/test/namespace/TestNamespace.py @@ -17,7 +17,6 @@ class NamespaceTestCase(TestBase): self.buildDsym() self.namespace_variable_commands() - @unittest2.expectedFailure # rdar://problem/8659840 # runCmd: frame variable -c -G i # runCmd failed! @@ -65,8 +64,8 @@ class NamespaceTestCase(TestBase): # rdar://problem/8660275 # test/namespace: 'expression -- i+j' not working - #self.expect("expression -- i + j", - # startstr = "(int) $0 = 7") + self.expect("expression -- i + j", + startstr = "(int) $0 = 7") # (int) $0 = 7 if __name__ == '__main__':