[Lldb-commits] [lldb] r247567 - Removed XFAIL marker from passing tests, rdars 18684124, 15367233

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 14 07:48:54 PDT 2015


Author: tfiala
Date: Mon Sep 14 09:48:53 2015
New Revision: 247567

URL: http://llvm.org/viewvc/llvm-project?rev=247567&view=rev
Log:
Removed XFAIL marker from passing tests, rdars 18684124, 15367233

Related to these two test case classes:
test/driver/batch_mode/TestBatchMode.py
test/functionalities/inferior-assert/TestInferiorAssert.py


Modified:
    lldb/trunk/test/driver/batch_mode/TestBatchMode.py
    lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py

Modified: lldb/trunk/test/driver/batch_mode/TestBatchMode.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/driver/batch_mode/TestBatchMode.py?rev=247567&r1=247566&r2=247567&view=diff
==============================================================================
--- lldb/trunk/test/driver/batch_mode/TestBatchMode.py (original)
+++ lldb/trunk/test/driver/batch_mode/TestBatchMode.py Mon Sep 14 09:48:53 2015
@@ -16,7 +16,6 @@ class DriverBatchModeTest (TestBase):
     mydir = TestBase.compute_mydir(__file__)
 
     @skipUnlessDarwin
-    @unittest2.expectedFailure("<rdar://problem/18684124>, lldb doesn't reliably print the prompt when run under pexpect")
     @dsym_test
     def test_driver_batch_mode_with_dsym(self):
         """Test that the lldb driver's batch mode works correctly."""
@@ -24,7 +23,6 @@ class DriverBatchModeTest (TestBase):
         self.setTearDownCleanup()
         self.batch_mode ()
 
-    @unittest2.expectedFailure("<rdar://problem/18684124>, lldb doesn't reliably print the prompt when run under pexpect")
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
     @dwarf_test
     def test_driver_batch_mode_with_dwarf(self):

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=247567&r1=247566&r2=247567&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py (original)
+++ lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py Mon Sep 14 09:48:53 2015
@@ -10,14 +10,12 @@ class AssertingInferiorTestCase(TestBase
     mydir = TestBase.compute_mydir(__file__)
 
     @skipUnlessDarwin
-    @unittest2.expectedFailure("rdar://15367233")
     def test_inferior_asserting_dsym(self):
         """Test that lldb reliably catches the inferior asserting (command)."""
         self.buildDsym()
         self.inferior_asserting()
 
     @expectedFailurei386("llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly")
-    @expectedFailureDarwin("rdar://15367233")
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows")
     def test_inferior_asserting_dwarf(self):
         """Test that lldb reliably catches the inferior asserting (command)."""
@@ -52,14 +50,12 @@ class AssertingInferiorTestCase(TestBase
         self.inferior_asserting_python()
 
     @skipUnlessDarwin
-    @unittest2.expectedFailure("rdar://15367233")
     def test_inferior_asserting_expr_dsym(self):
         """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
         self.buildDsym()
         self.inferior_asserting_expr()
 
     @expectedFailurei386('llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly')
-    @unittest2.expectedFailure("rdar://15367233")
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows")
     def test_inferior_asserting_expr_dwarf(self):
         """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
@@ -67,14 +63,12 @@ class AssertingInferiorTestCase(TestBase
         self.inferior_asserting_expr()
 
     @skipUnlessDarwin
-    @unittest2.expectedFailure("rdar://15367233")
     def test_inferior_asserting_step_dsym(self):
         """Test that lldb functions correctly after stepping through a call to assert()."""
         self.buildDsym()
         self.inferior_asserting_step()
 
     @expectedFailurei386("llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly")
-    @expectedFailureDarwin("rdar://15367233")
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows")
     def test_inferior_asserting_step_dwarf(self):
         """Test that lldb functions correctly after stepping through a call to assert()."""




More information about the lldb-commits mailing list