[Lldb-commits] [lldb] r140550 - /lldb/trunk/test/python_api/thread/TestThreadAPI.py

Johnny Chen johnny.chen at apple.com
Mon Sep 26 12:05:08 PDT 2011


Author: johnny
Date: Mon Sep 26 14:05:08 2011
New Revision: 140550

URL: http://llvm.org/viewvc/llvm-project?rev=140550&view=rev
Log:
Remove the @expectedFailureClang custom decorator for indicating clang-specific test failures.
It has been fixed on the lldb side to compensate for bad debug info (line table information).

Modified:
    lldb/trunk/test/python_api/thread/TestThreadAPI.py

Modified: lldb/trunk/test/python_api/thread/TestThreadAPI.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/thread/TestThreadAPI.py?rev=140550&r1=140549&r2=140550&view=diff
==============================================================================
--- lldb/trunk/test/python_api/thread/TestThreadAPI.py (original)
+++ lldb/trunk/test/python_api/thread/TestThreadAPI.py Mon Sep 26 14:05:08 2011
@@ -77,7 +77,6 @@
         self.step_out_of_malloc_into_function_b(self.exe_name)
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
-    @expectedFailureClang
     @python_api_test
     def test_step_over_3_times_with_dsym(self):
         """Test Python SBThread.StepOver() API."""
@@ -87,7 +86,6 @@
         self.setTearDownCleanup(dictionary=d)
         self.step_over_3_times(self.exe_name)
 
-    @expectedFailureClang
     @python_api_test
     def test_step_over_3_times_with_dwarf(self):
         """Test Python SBThread.StepOver() API."""
@@ -225,6 +223,9 @@
         self.assertTrue(thread.GetStopReason() == lldb.eStopReasonPlanComplete)
         # Expected failure with clang as the compiler.
         # rdar://problem/9223880
+        #
+        # Which has been fixed on the lldb by compensating for inaccurate line
+        # table information with r140416.
         self.assertTrue(lineEntry.GetLine() == self.after_3_step_overs)
 
     def run_to_address(self, exe_name):





More information about the lldb-commits mailing list