From: Ed Maste Date: Thu, 23 Oct 2014 15:21:45 +0000 (+0000) Subject: Disable dsym tests on !Darwin hosts X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1b25368f0cec7380d36f26a64c44df7bc7db298;p=platform%2Fupstream%2Fllvm.git Disable dsym tests on !Darwin hosts This was missing from r219984 llvm.org/pr21324 llvm-svn: 220485 --- diff --git a/lldb/test/lldbinline.py b/lldb/test/lldbinline.py index 24b3287..52925a0 100644 --- a/lldb/test/lldbinline.py +++ b/lldb/test/lldbinline.py @@ -103,6 +103,7 @@ def CleanMakefile(): class InlineTest(TestBase): # Internal implementation + @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") def buildDsymWithImplicitMakefile(self): BuildMakefile(self.mydir) self.buildDsym() @@ -111,6 +112,7 @@ class InlineTest(TestBase): BuildMakefile(self.mydir) self.buildDwarf() + @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") def test_with_dsym(self): self.buildDsymWithImplicitMakefile() self.do_test()