summaryrefslogtreecommitdiffstats
path: root/lldb/test/expression_command
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2015-09-14 19:12:56 +0000
committerTodd Fiala <todd.fiala@gmail.com>2015-09-14 19:12:56 +0000
commit7b6fbcf365ef1d9910140a3ca3f9d008fff536d2 (patch)
treee21e02498bca2866203c7013bf9dc657348fbaa0 /lldb/test/expression_command
parentfa62b1763cc9cc2cb763b2db4d64d68a3a08c28b (diff)
downloadbcm5719-llvm-7b6fbcf365ef1d9910140a3ca3f9d008fff536d2.tar.gz
bcm5719-llvm-7b6fbcf365ef1d9910140a3ca3f9d008fff536d2.zip
OS X unexpected success cleanup
TestPersistObjCPointeeType and TestObjCNewSyntax marked up to expect success on clang >= 7.0.0. TestMultipleDebuggers passed 25/25 times, taking off intermittent. If this changes, I'll make sure it goes into a flaky/flakey category. llvm-svn: 247601
Diffstat (limited to 'lldb/test/expression_command')
-rw-r--r--lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py b/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
index 9c8c3fe1e70..c1c5eb2dbec 100644
--- a/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
+++ b/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
@@ -19,7 +19,9 @@ class PersistObjCPointeeType(TestBase):
@skipUnlessDarwin
@dsym_test
- @expectedFailureDarwin('http://llvm.org/pr23504') # can't compile inferior with Xcode 6.1.1 or 6.2
+ @expectedFailureAll(
+ bugnumber='http://llvm.org/pr23504',
+ oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'])
def test_with_dsym(self):
"""Test that we can p *objcObject"""
self.buildDsym()
@@ -27,7 +29,9 @@ class PersistObjCPointeeType(TestBase):
@skipUnlessDarwin
@dwarf_test
- @expectedFailureDarwin('http://llvm.org/pr23504') # can't compile inferior with Xcode 6.1.1 or 6.2
+ @expectedFailureAll(
+ bugnumber='http://llvm.org/pr23504',
+ oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'])
def test_with_dwarf(self):
"""Test that we can p *objcObject"""
self.buildDwarf()
@@ -36,7 +40,7 @@ class PersistObjCPointeeType(TestBase):
def do_my_test(self):
def cleanup():
pass
-
+
# Execute the cleanup function during test case tear down.
self.addTearDownHook(cleanup)
OpenPOWER on IntegriCloud