From 2769a42731daaf34607f04580df14822f217b225 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Fri, 15 Oct 2010 23:35:32 +0000 Subject: [PATCH] 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 --- lldb/test/foundation/TestObjCMethods.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lldb/test/foundation/TestObjCMethods.py b/lldb/test/foundation/TestObjCMethods.py index 9f9f8211665d..c47bb3eae7f9 100644 --- a/lldb/test/foundation/TestObjCMethods.py +++ b/lldb/test/foundation/TestObjCMethods.py @@ -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__':