[Lldb-commits] [lldb] r248271 - Remove expectedFailureFreeBSD from passing tests

Ed Maste via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 22 06:31:16 PDT 2015


Author: emaste
Date: Tue Sep 22 08:31:16 2015
New Revision: 248271

URL: http://llvm.org/viewvc/llvm-project?rev=248271&view=rev
Log:
Remove expectedFailureFreeBSD from passing tests

These two tests are skipped on Linux with a comment that the behaviour
is as expected, but they are consistently passing on FreeBSD now.

llvm.org/pr15989

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=248271&r1=248270&r2=248271&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py Tue Sep 22 08:31:16 2015
@@ -86,7 +86,6 @@ class CrashingInferiorTestCase(TestBase)
         self.buildDsym()
         self.inferior_crashing_expr_step_expr()
 
-    @expectedFailureFreeBSD('llvm.org/pr15989') # Couldn't allocate space for the stack frame
     @expectedFailureWindows("llvm.org/pr24778")
     @skipIfLinux # Inferior exits after stepping after a segfault. This is working as intended IMHO.
     def test_inferior_crashing_expr_step_and_expr_dwarf(self):

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=248271&r1=248270&r2=248271&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py Tue Sep 22 08:31:16 2015
@@ -86,7 +86,6 @@ class CrashingRecursiveInferiorTestCase(
         self.buildDsym()
         self.recursive_inferior_crashing_expr_step_expr()
 
-    @expectedFailureFreeBSD('llvm.org/pr15989') # Couldn't allocate space for the stack frame
     @skipIfLinux # Inferior exits after stepping after a segfault. This is working as intended IMHO.
     @expectedFailureWindows("llvm.org/pr24778")
     def test_recursive_inferior_crashing_expr_step_and_expr_dwarf(self):




More information about the lldb-commits mailing list