[Lldb-commits] [lldb] e9f9434 - [lldb] Skip TestIOHandlerResizeNoEditline on Windows
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 8 02:47:17 PDT 2020
Author: Raphael Isemann
Date: 2020-07-08T11:45:38+02:00
New Revision: e9f943429c895e4d6d29505fab2fad365fe2766e
URL: https://github.com/llvm/llvm-project/commit/e9f943429c895e4d6d29505fab2fad365fe2766e
DIFF: https://github.com/llvm/llvm-project/commit/e9f943429c895e4d6d29505fab2fad365fe2766e.diff
LOG: [lldb] Skip TestIOHandlerResizeNoEditline on Windows
It seems opening the empty file and trying use that file object as an input
stream doesn't work on Windows. Skipping it for now.
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 323e511496cd..9f0d562e8afc 100644
--- a/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
+++ b/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
@@ -9,6 +9,7 @@ class TestCase(TestBase):
@no_debug_info_test
@skipIfReproducer
+ @skipIfWindows
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