[Lldb-commits] [lldb] r175095 - Skip test that causes lldb to assert due to inferior getting a SIGSEGV with si_code == SI_KERNEL (PR-15258)

Daniel Malea daniel.malea at intel.com
Wed Feb 13 14:05:18 PST 2013


Author: dmalea
Date: Wed Feb 13 16:05:18 2013
New Revision: 175095

URL: http://llvm.org/viewvc/llvm-project?rev=175095&view=rev
Log:
Skip test that causes lldb to assert due to inferior getting a SIGSEGV with si_code == SI_KERNEL (PR-15258)
- crash does not always reproduce


Modified:
    lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py

Modified: lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py?rev=175095&r1=175094&r2=175095&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py (original)
+++ lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py Wed Feb 13 16:05:18 2013
@@ -20,7 +20,7 @@ class ExprDoesntDeadlockTestCase(TestBas
         self.expr_doesnt_deadlock()
 
     @dwarf_test
-    @expectedFailureLinux # due to bugzilla 14437
+    @skipOnLinux # PR-15258: disabled due to assertion failure in ProcessMonitor::GetCrashReasonForSIGSEGV:
     def test_with_dwarf_and_run_command(self):
         """Test that expr will time out and allow other threads to run if it blocks."""
         self.buildDwarf()
@@ -62,7 +62,7 @@ class ExprDoesntDeadlockTestCase(TestBas
         var = frame0.EvaluateExpression ("call_me_to_get_lock()")
         self.assertTrue (var.IsValid())
         self.assertTrue (var.GetValueAsSigned (0) == 567)
-        
+
 if __name__ == '__main__':
     import atexit
     lldb.SBDebugger.Initialize()





More information about the lldb-commits mailing list