Restrict SigtrampUnwind test to Darwin only
authorEd Maste <emaste@freebsd.org>
Fri, 30 Jan 2015 16:33:02 +0000 (16:33 +0000)
committerEd Maste <emaste@freebsd.org>
Fri, 30 Jan 2015 16:33:02 +0000 (16:33 +0000)
It needs OS-specific knowledge and has not yet been adapted to other
systems.

llvm-svn: 227579

lldb/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py

index 09eeddf..1c2e8ed 100644 (file)
@@ -21,6 +21,7 @@ class SigtrampUnwind(TestBase):
         self.setTearDownCleanup()
         self.sigtramp_unwind_tests()
 
+    @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dwarf_test
     def test_with_dwarf (self):
         """Test that we can backtrace correctly with _sigtramp on the stack"""