[Lldb-commits] [lldb] e83f597 - [lldb-dap][windows] skip runInTerminal related tests (#198764)

via lldb-commits lldb-commits at lists.llvm.org
Wed May 20 06:04:15 PDT 2026


Author: Charles Zablit
Date: 2026-05-20T14:04:09+01:00
New Revision: e83f597dc3817e7017d867bc6cdecf7a3ff34846

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

LOG: [lldb-dap][windows] skip runInTerminal related tests (#198764)

The following tests fail at desk. This is likely a regression introduced
by
https://github.com/llvm/llvm-project/commit/a614cd391a402c8682c7b4781121eab07da09ec7.
Skip the tests on Windows to unblock the bots.

https://github.com/llvm/llvm-project/issues/198763

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_stdio_redirection_and_console.py
    lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_stdio_redirection_and_console.py b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_stdio_redirection_and_console.py
index 5b836e99a48fb..f4512a5c7bb63 100644
--- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_stdio_redirection_and_console.py
+++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_stdio_redirection_and_console.py
@@ -19,6 +19,7 @@ class TestDAP_launch_stdio_redirection_and_console(lldbdap_testcase.DAPTestCaseB
     """
 
     @skipIfAsan
+    @skipIfWindows  # https://github.com/llvm/llvm-project/issues/198763
     @skipIf(oslist=["linux"], archs=no_match(["x86_64"]))
     @skipIfBuildType(["debug"])
     def test(self):

diff  --git a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
index 4e09efadfdcdc..429051c9cf9f9 100644
--- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
+++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py
@@ -66,6 +66,7 @@ def read_pipe_message(pipe):
 
 
 @skipIfBuildType(["debug"])
+ at skipIfWindows  # https://github.com/llvm/llvm-project/issues/198763
 class TestDAP_runInTerminal(lldbdap_testcase.DAPTestCaseBase):
     SHARED_BUILD_TESTCASE = False
 


        


More information about the lldb-commits mailing list