From: Ed Maste Date: Mon, 20 Oct 2014 18:12:46 +0000 (+0000) Subject: Skip dsym test on !Darwin X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b102650cb96de0e7722db281f4cdd60728e32ed;p=platform%2Fupstream%2Fllvm.git Skip dsym test on !Darwin r219978 fixed this test to work on Darwin, and removed the expected failure decorator, but it then started running (and failing) on FreeBSD. I'd think @dsym_test should skip the test on all non-Darwin operating systems. It seems not to be the case, so for now skip it the same way as done for other @dsym_test tests. llvm-svn: 220219 --- diff --git a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py index cd4f875..b47b2d4 100644 --- a/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py +++ b/lldb/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py @@ -14,6 +14,7 @@ class ObjCNewSyntaxTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) + @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @dsym_test def test_expr_with_dsym(self): self.buildDsym()