summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-10-15 23:35:32 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-10-15 23:35:32 +0000
commit2769a42731daaf34607f04580df14822f217b225 (patch)
tree3daf10082a28de2f7b7bdb197828d5a31e5cb7b2
parent5f5b922ec6badad8701fd85d969c6bb0a736b746 (diff)
downloadbcm5719-llvm-2769a42731daaf34607f04580df14822f217b225.tar.gz
bcm5719-llvm-2769a42731daaf34607f04580df14822f217b225.zip
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
-rw-r--r--lldb/test/foundation/TestObjCMethods.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/test/foundation/TestObjCMethods.py b/lldb/test/foundation/TestObjCMethods.py
index 9f9f8211665..c47bb3eae7f 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__':
OpenPOWER on IntegriCloud