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
This commit is contained in:
Johnny Chen 2010-11-15 17:42:22 +00:00
parent c961119dcd
commit deac523f7c
1 changed files with 2 additions and 3 deletions

View File

@ -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__':