[Lldb-commits] [lldb] r194726 - Mark two FreeBSD tests failing due to llvm.org/pr15989

Ed Maste emaste at freebsd.org
Thu Nov 14 12:25:29 PST 2013


Author: emaste
Date: Thu Nov 14 14:25:29 2013
New Revision: 194726

URL: http://llvm.org/viewvc/llvm-project?rev=194726&view=rev
Log:
Mark two FreeBSD tests failing due to llvm.org/pr15989

After solving llvm.org/pr17226 these two tests now fail for the same reason
they do on Linux.

Modified:
    lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py
    lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py

Modified: lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py?rev=194726&r1=194725&r2=194726&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py Thu Nov 14 14:25:29 2013
@@ -81,7 +81,7 @@ class CrashingInferiorTestCase(TestBase)
         self.buildDsym()
         self.inferior_crashing_expr_step_expr()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
+    @expectedFailureFreeBSD('llvm.org/pr15989') # Couldn't allocate space for the stack frame
     @expectedFailureLinux # due to llvm.org/pr15989 -- expression fails after crash and step
     def test_inferior_crashing_expr_step_and_expr_dwarf(self):
         """Test that lldb expressions work before and after stepping after a crash."""

Modified: lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py?rev=194726&r1=194725&r2=194726&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py Thu Nov 14 14:25:29 2013
@@ -80,7 +80,7 @@ class CrashingRecursiveInferiorTestCase(
         self.buildDsym()
         self.recursive_inferior_crashing_expr_step_expr()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
+    @expectedFailureFreeBSD('llvm.org/pr15989') # Couldn't allocate space for the stack frame
     @expectedFailureLinux # llvm.org/pr15989 - Couldn't allocate space for the stack frame
     def test_recursive_inferior_crashing_expr_step_and_expr_dwarf(self):
         """Test that lldb expressions work before and after stepping after a crash."""





More information about the lldb-commits mailing list