[Lldb-commits] [lldb] r220485 - Disable dsym tests on !Darwin hosts

Ed Maste emaste at freebsd.org
Thu Oct 23 08:21:46 PDT 2014


Author: emaste
Date: Thu Oct 23 10:21:45 2014
New Revision: 220485

URL: http://llvm.org/viewvc/llvm-project?rev=220485&view=rev
Log:
Disable dsym tests on !Darwin hosts

This was missing from r219984

llvm.org/pr21324

Modified:
    lldb/trunk/test/lldbinline.py

Modified: lldb/trunk/test/lldbinline.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbinline.py?rev=220485&r1=220484&r2=220485&view=diff
==============================================================================
--- lldb/trunk/test/lldbinline.py (original)
+++ lldb/trunk/test/lldbinline.py Thu Oct 23 10:21:45 2014
@@ -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()





More information about the lldb-commits mailing list