[Lldb-commits] [lldb] [lldb] Disable TestIOHandlerResizeNoEditline.py for Windows hosts (PR #120025)

Dmitry Vasilyev via lldb-commits lldb-commits at lists.llvm.org
Sun Dec 15 16:14:33 PST 2024


https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/120025

See #120021 for details.

>From 638d7e0fdf4c29d0d1a94985f8aa0c49b4a5ea21 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Mon, 16 Dec 2024 04:11:47 +0400
Subject: [PATCH] [lldb] Disable TestIOHandlerResizeNoEditline.py for Windows
 hosts

See #120021 for details.
---
 .../API/iohandler/resize/TestIOHandlerResizeNoEditline.py    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py b/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
index bbc2dcbe4e30ad..41b527a4e6b340 100644
--- a/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
+++ b/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
@@ -6,7 +6,10 @@
 
 class TestCase(TestBase):
     @no_debug_info_test
-    @skipIfWindows
+    @skipIf(
+        hostoslist=["windows"],
+        bugnumber="https://github.com/llvm/llvm-project/issues/120021",
+    )
     def test_resize_no_editline(self):
         """Tests terminal resizing if the editline isn't used."""
         dbg = lldb.SBDebugger.Create(False)



More information about the lldb-commits mailing list