[Lldb-commits] [lldb] r194731 - Remove annotations for pr17184 (now fixed)

Ed Maste emaste at freebsd.org
Thu Nov 14 13:29:58 PST 2013


Author: emaste
Date: Thu Nov 14 15:29:58 2013
New Revision: 194731

URL: http://llvm.org/viewvc/llvm-project?rev=194731&view=rev
Log:
Remove annotations for pr17184 (now fixed)

This failure was due to a limitation in the FreeBSD kernel that has now been
addressed.  (llvm.org/pr17226 has the details.)

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

Modified: lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py?rev=194731&r1=194730&r2=194731&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py (original)
+++ lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py Thu Nov 14 15:29:58 2013
@@ -29,7 +29,6 @@ class AssertingInferiorTestCase(TestBase
         self.buildDsym()
         self.inferior_asserting_registers()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
     def test_inferior_asserting_register_dwarf(self):
         """Test that lldb reliably reads registers from the inferior after asserting (command)."""
         self.buildDwarf()

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=194731&r1=194730&r2=194731&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py Thu Nov 14 15:29:58 2013
@@ -26,7 +26,6 @@ class CrashingInferiorTestCase(TestBase)
         self.buildDsym()
         self.inferior_crashing_registers()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
     def test_inferior_crashing_register_dwarf(self):
         """Test that lldb reliably reads registers from the inferior after crashing (command)."""
         self.buildDwarf()
@@ -44,7 +43,6 @@ class CrashingInferiorTestCase(TestBase)
         self.buildDsym()
         self.inferior_crashing_expr()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
     def test_inferior_crashing_expr_dwarf(self):
         """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
         self.buildDwarf()
@@ -56,7 +54,6 @@ class CrashingInferiorTestCase(TestBase)
         self.buildDsym()
         self.inferior_crashing_step()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
     def test_inferior_crashing_step_dwarf(self):
         """Test that stepping after a crash behaves correctly."""
         self.buildDwarf()

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=194731&r1=194730&r2=194731&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 15:29:58 2013
@@ -26,7 +26,6 @@ class CrashingRecursiveInferiorTestCase(
         self.buildDsym()
         self.recursive_inferior_crashing_registers()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
     def test_recursive_inferior_crashing_register_dwarf(self):
         """Test that lldb reliably reads registers from the inferior after crashing (command)."""
         self.buildDwarf()
@@ -44,7 +43,6 @@ class CrashingRecursiveInferiorTestCase(
         self.buildDsym()
         self.recursive_inferior_crashing_expr()
 
-    @expectedFailureFreeBSD('llvm.org/pr17184')
     def test_recursive_inferior_crashing_expr_dwarf(self):
         """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
         self.buildDwarf()





More information about the lldb-commits mailing list