summaryrefslogtreecommitdiffstats
path: root/lldb/test/lang
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/lang
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/lang')
-rw-r--r--lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
index 89762764839..29e86fa8de0 100644
--- a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
+++ b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
@@ -16,7 +16,8 @@ class ObjCNewSyntaxTestCase(TestBase):
@skipUnlessDarwin
@dsym_test
- @expectedFailureDarwin # expr -- @((char*)"Hello world" + 6) cannot box a string value because NSString has not been declared
+ @expectedFailureAll(
+ oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'])
def test_expr_with_dsym(self):
self.buildDsym()
self.expr()
@@ -25,7 +26,8 @@ class ObjCNewSyntaxTestCase(TestBase):
@skipIfFreeBSD
@skipIfLinux
@skipIfWindows
- @expectedFailureDarwin # expr -- @((char*)"Hello world" + 6) cannot box a string value because NSString has not been declared
+ @expectedFailureAll(
+ oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'])
def test_expr_with_dwarf(self):
self.buildDwarf()
self.expr()
OpenPOWER on IntegriCloud