[Lldb-commits] [lldb] r185579 - Remove @expectedFailureGcc from TestInlineStepping as function prologue bug is not reproducible anymore.

Daniel Malea daniel.malea at intel.com
Wed Jul 3 13:51:44 PDT 2013


Author: dmalea
Date: Wed Jul  3 15:51:44 2013
New Revision: 185579

URL: http://llvm.org/viewvc/llvm-project?rev=185579&view=rev
Log:
Remove @expectedFailureGcc from TestInlineStepping as function prologue bug is not reproducible anymore.


Modified:
    lldb/trunk/test/functionalities/inline-stepping/TestInlineStepping.py

Modified: lldb/trunk/test/functionalities/inline-stepping/TestInlineStepping.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inline-stepping/TestInlineStepping.py?rev=185579&r1=185578&r2=185579&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inline-stepping/TestInlineStepping.py (original)
+++ lldb/trunk/test/functionalities/inline-stepping/TestInlineStepping.py Wed Jul  3 15:51:44 2013
@@ -18,9 +18,6 @@ class TestInlineStepping(TestBase):
         self.buildDsym()
         self.inline_stepping()
 
-    @expectedFailureGcc # Some versions of GCC emit DWARF that considers functions to start at the line with the '{' whereas this test
-                        # expects the first line of a function to be the first line of source (i.e. what clang does). As such, this test
-                        # fails with some versions of GCC.
     @python_api_test
     @dwarf_test
     def test_with_dwarf_and_python_api(self):
@@ -36,9 +33,6 @@ class TestInlineStepping(TestBase):
         self.buildDsym()
         self.inline_stepping_step_over()
 
-    @expectedFailureGcc # Some versions of GCC emit DWARF that considers functions to start at the line with the '{' whereas this test
-                        # expects the first line of a function to be the first line of source (i.e. what clang does). As such, this test
-                        # fails with some versions of GCC.
     @python_api_test
     @dwarf_test
     def test_step_over_with_dwarf_and_python_api(self):





More information about the lldb-commits mailing list