[Lldb-commits] [lldb] 7557972 - [lldb][test] Fix formatting in TestInlineStepping.py

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 31 02:08:46 PDT 2024


Author: David Spickett
Date: 2024-10-31T09:08:00Z
New Revision: 7557972884106e6bdaf00eabe1a8cafec861a7fe

URL: https://github.com/llvm/llvm-project/commit/7557972884106e6bdaf00eabe1a8cafec861a7fe
DIFF: https://github.com/llvm/llvm-project/commit/7557972884106e6bdaf00eabe1a8cafec861a7fe.diff

LOG: [lldb][test] Fix formatting in TestInlineStepping.py

Fixes a218f0f354e9df2ce689686be503f3d85fea44f9

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py b/lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py
index 1118758cc88fbc..4e2d908e63b81c 100644
--- a/lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py
+++ b/lldb/test/API/functionalities/inline-stepping/TestInlineStepping.py
@@ -1,6 +1,5 @@
 """Test stepping over and into inlined functions."""
 
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
@@ -14,8 +13,7 @@ class TestInlineStepping(TestBase):
         compiler="icc",
         bugnumber="# Not really a bug.  ICC combines two inlined functions.",
     )
-
-    @skipIf(oslist=["linux"], archs=["arm"]) # Fails for 32 bit arm
+    @skipIf(oslist=["linux"], archs=["arm"])  # Fails for 32 bit arm
     def test_with_python_api(self):
         """Test stepping over and into inlined functions."""
         self.build()


        


More information about the lldb-commits mailing list