[Lldb-commits] [lldb] r181602 - Removed expectedFailureDarwin, and added a note about the disparity between the automated tests and testing at the lldb command-line.

Ashok Thirumurthi ashok.thirumurthi at intel.com
Fri May 10 09:10:23 PDT 2013


Author: athirumu
Date: Fri May 10 11:10:23 2013
New Revision: 181602

URL: http://llvm.org/viewvc/llvm-project?rev=181602&view=rev
Log:
Removed expectedFailureDarwin, and added a note about the disparity between the automated tests and testing at the lldb command-line.

Modified:
    lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.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=181602&r1=181601&r2=181602&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py (original)
+++ lldb/trunk/test/functionalities/inferior-crashing/TestInferiorCrashing.py Fri May 10 11:10:23 2013
@@ -38,26 +38,24 @@ class CrashingInferiorTestCase(TestBase)
         self.inferior_crashing_python()
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    @expectedFailureDarwin # bugzilla 15784
     def test_inferior_crashing_expr(self):
         """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
         self.buildDsym()
         self.inferior_crashing_expr()
 
-    @expectedFailureDarwin # bugzilla 15784
+    # bugzilla 15784 - the same commands fail when run on Linux from the lldb command line
     def test_inferior_crashing_expr(self):
         """Test that the lldb expression interpreter can read from the inferior after crashing (command)."""
         self.buildDwarf()
         self.inferior_crashing_expr()
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    @expectedFailureDarwin # bugzilla 15784
     def test_inferior_crashing_step(self):
         """Test that lldb functions correctly after stepping through a crash."""
         self.buildDsym()
         self.inferior_crashing_step()
 
-    @expectedFailureDarwin # bugzilla 15784
+    # bugzilla 15784 - the same commands fail when run on Linux from the lldb command line
     def test_inferior_crashing_step(self):
         """Test that lldb functions correctly after stepping through a crash."""
         self.buildDwarf()





More information about the lldb-commits mailing list