[Lldb-commits] [lldb] 2b41277 - [lldb] Disable test_step_out_thunk on Windows

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 17 16:27:05 PST 2025


Author: Jonas Devlieghere
Date: 2025-02-17T16:25:13-08:00
New Revision: 2b41277a09820bc47dc533ad37b5213edc2e8d52

URL: https://github.com/llvm/llvm-project/commit/2b41277a09820bc47dc533ad37b5213edc2e8d52
DIFF: https://github.com/llvm/llvm-project/commit/2b41277a09820bc47dc533ad37b5213edc2e8d52.diff

LOG: [lldb] Disable test_step_out_thunk on Windows

On Windows we end up in assembly. Not sure if the thread plans behave
differently or this is a debug info issue. I have no environment to
reproduce and investigate this in, so I'm disabling the test for now.

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/thunk/TestThunk.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/thunk/TestThunk.py b/lldb/test/API/lang/cpp/thunk/TestThunk.py
index ceb16263648d6..9370c1c58c18b 100644
--- a/lldb/test/API/lang/cpp/thunk/TestThunk.py
+++ b/lldb/test/API/lang/cpp/thunk/TestThunk.py
@@ -24,6 +24,7 @@ def test_step_through_thunk(self):
             substrs=["stop reason = step in", "Derived2::doit"],
         )
 
+    @skipIfWindows
     def test_step_out_thunk(self):
         self.build()
         lldbutil.run_to_name_breakpoint(self, "testit_debug")


        


More information about the lldb-commits mailing list