From 87ff93c0fd518fda0696801eb1d91d55702caacc Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 30 Jan 2015 16:33:02 +0000 Subject: [PATCH] Restrict SigtrampUnwind test to Darwin only It needs OS-specific knowledge and has not yet been adapted to other systems. llvm-svn: 227579 --- lldb/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py b/lldb/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py index 09eeddf..1c2e8ed 100644 --- a/lldb/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py +++ b/lldb/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py @@ -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""" -- 2.7.4