Remove the @expectedFailure decorators, as rdar://problem/8542091 is supposed to be fixed.

Also change the expected matching pattern of the 'expr -o -- my' output.

llvm-svn: 116645
This commit is contained in:
Johnny Chen 2010-10-15 23:35:32 +00:00
parent 5f5b922ec6
commit 2769a42731
1 changed files with 3 additions and 4 deletions

View File

@ -23,7 +23,7 @@ class FoundationTestCase(TestBase):
self.buildDwarf()
self.break_on_objc_methods()
@unittest2.expectedFailure
#@unittest2.expectedFailure
# rdar://problem/8542091
# rdar://problem/8492646
def test_data_type_and_expr_with_dsym(self):
@ -31,7 +31,7 @@ class FoundationTestCase(TestBase):
self.buildDsym()
self.data_type_and_expr_objc()
@unittest2.expectedFailure
#@unittest2.expectedFailure
# rdar://problem/8542091
# rdar://problem/8492646
def test_data_type_and_expr_with_dwarf(self):
@ -173,8 +173,7 @@ class FoundationTestCase(TestBase):
# Test new feature with r115115:
# Add "-o" option to "expression" which prints the object description if available.
self.expect("expr -o -- my", "Object description displayed correctly",
startstr = "Hello from ",
substrs = ["a.out", "with timestamp: "])
patterns = ["Hello from.*a.out.*with timestamp: "])
if __name__ == '__main__':