Files
clang-p2996/lldb/test/API/iohandler/resize/TestIOHandlerResize.py
Muhammad Omair Javaid f2128abec2 [LLDB] Skip flaky tests on Arm/AArch64 Linux bots
Following LLDB tests fail randomly on LLDB Arm/AArch64 Linux buildbots.
We still not have a reliable solution for these tests to pass
consistently. I am marking them skipped for now.

TestBreakpointCallbackCommandSource.py
TestIOHandlerResize.py
TestEditline.py
TestGuiViewLarge.py
TestGuiExpandThreadsTree.py
TestGuiBreakpoints.py
2021-08-04 16:57:36 +05:00

38 lines
1.0 KiB
Python

"""
Test resizing in our IOHandlers.
"""
import os
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test.lldbpexpect import PExpectTest
class IOHandlerCompletionTest(PExpectTest):
mydir = TestBase.compute_mydir(__file__)
# PExpect uses many timeouts internally and doesn't play well
# under ASAN on a loaded machine..
@skipIfAsan
@skipIfEditlineSupportMissing
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_resize(self):
# Start with a small window
self.launch(dimensions=(10,10))
self.child.send("his is a long sentence missing its first letter.")
# Now resize to something bigger
self.child.setwinsize(100,500)
# Hit "left" 60 times (to go to the beginning of the line) and insert
# a character.
self.child.send(60 * "\033[D")
self.child.send("T")
self.child.expect_exact("(lldb) This is a long sentence missing its first letter.")
self.quit()