Disable dsym tests on !Darwin hosts
authorEd Maste <emaste@freebsd.org>
Thu, 23 Oct 2014 15:21:45 +0000 (15:21 +0000)
committerEd Maste <emaste@freebsd.org>
Thu, 23 Oct 2014 15:21:45 +0000 (15:21 +0000)
This was missing from r219984

llvm.org/pr21324

llvm-svn: 220485

lldb/test/lldbinline.py

index 24b3287..52925a0 100644 (file)
@@ -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()