[Lldb-commits] [lldb] d92c677 - [lldb][Windows] Fixed the TestIOHandlerResizeNoEditline test (#92286)
via lldb-commits
lldb-commits at lists.llvm.org
Wed May 15 10:08:38 PDT 2024
Author: Dmitry Vasilyev
Date: 2024-05-15T21:08:35+04:00
New Revision: d92c67784f21063d6334a009dbf4f9e0f8217b41
URL: https://github.com/llvm/llvm-project/commit/d92c67784f21063d6334a009dbf4f9e0f8217b41
DIFF: https://github.com/llvm/llvm-project/commit/d92c67784f21063d6334a009dbf4f9e0f8217b41.diff
LOG: [lldb][Windows] Fixed the TestIOHandlerResizeNoEditline test (#92286)
This test caused python crash on Windows x86_64 host with the exit code
0xC0000409 (STATUS_STACK_BUFFER_OVERRUN). Close the input stream before
exit to avoid this crash.
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 3c07554f6cafd..bbc2dcbe4e30a 100644
--- a/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
+++ b/lldb/test/API/iohandler/resize/TestIOHandlerResizeNoEditline.py
@@ -18,3 +18,4 @@ def test_resize_no_editline(self):
dbg.RunCommandInterpreter(True, True, opts, 0, False, False)
# Try resizing the terminal which shouldn't crash.
dbg.SetTerminalWidth(47)
+ dbg.GetInputFile().Close()
More information about the lldb-commits
mailing list