[Lldb-commits] [lldb] d576021 - [lldb] Disable TestIOHandlerResizeNoEditline.py for Windows hosts (#120025)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 16 07:52:33 PST 2024
Author: Dmitry Vasilyev
Date: 2024-12-16T19:52:30+04:00
New Revision: d576021853fd64c10fd746389a9b263cf10c5295
URL: https://github.com/llvm/llvm-project/commit/d576021853fd64c10fd746389a9b263cf10c5295
DIFF: https://github.com/llvm/llvm-project/commit/d576021853fd64c10fd746389a9b263cf10c5295.diff
LOG: [lldb] Disable TestIOHandlerResizeNoEditline.py for Windows hosts (#120025)
See #120021 for details.
Added:
Modified:
lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
Removed:
################################################################################
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