[Lldb-commits] [lldb] Fix lldb-dap non-leaf frame source resolution issue (PR #165944)

via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 10 14:54:02 PST 2025


================
@@ -0,0 +1,67 @@
+"""
+Test lldb-dap stackTrace request for compiler generated code
+"""
+
+import os
+
+import lldbdap_testcase
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+
+
+class TestDAP_stackTraceCompilerGeneratedCode(lldbdap_testcase.DAPTestCaseBase):
+    @skipIfWindows
----------------
jeffreytan81 wrote:

The reason is that all other TestDAP_stackTraceXXX tests are using `skipIfWindows` so it probably safer to follow the pattern. I can try to remove this, but I do not have a Windows machine to verify so if windows test bots failed, I will probably have to add `skipIfWindows` back to unblock.

https://github.com/llvm/llvm-project/pull/165944


More information about the lldb-commits mailing list