From e1b25368f0cec7380d36f26a64c44df7bc7db298 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 23 Oct 2014 15:21:45 +0000 Subject: [PATCH] Disable dsym tests on !Darwin hosts This was missing from r219984 llvm.org/pr21324 llvm-svn: 220485 --- lldb/test/lldbinline.py | 2 ++ 1 file changed, 2 insertions(+) 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() -- 2.7.4