[Lldb-commits] [lldb] r227579 - Restrict SigtrampUnwind test to Darwin only

Ed Maste emaste at freebsd.org
Fri Jan 30 08:33:02 PST 2015


Author: emaste
Date: Fri Jan 30 10:33:02 2015
New Revision: 227579

URL: http://llvm.org/viewvc/llvm-project?rev=227579&view=rev
Log:
Restrict SigtrampUnwind test to Darwin only

It needs OS-specific knowledge and has not yet been adapted to other
systems.

Modified:
    lldb/trunk/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py

Modified: lldb/trunk/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py?rev=227579&r1=227578&r2=227579&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py (original)
+++ lldb/trunk/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py Fri Jan 30 10:33:02 2015
@@ -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"""





More information about the lldb-commits mailing list