[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
This commit is contained in:
Muhammad Omair Javaid 2021-08-04 16:53:07 +05:00
parent e3f4c63e78
commit f2128abec2
6 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class TestGuiBasicDebugCommandTest(PExpectTest):
# under ASAN on a loaded machine..
@skipIfAsan
@skipIfCursesSupportMissing
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_gui(self):
self.build()

View File

@ -17,6 +17,7 @@ class TestGuiExpandThreadsTree(PExpectTest):
# under ASAN on a loaded machine..
@skipIfAsan
@skipIfCursesSupportMissing
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_gui(self):
self.build()

View File

@ -17,6 +17,7 @@ class GuiViewLargeCommandTest(PExpectTest):
@skipIfCursesSupportMissing
@skipIfRemote # "run" command will not work correctly for remote debug
@expectedFailureNetBSD
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_gui(self):
self.build()

View File

@ -19,6 +19,7 @@ class BreakpointCallbackCommandSource(PExpectTest):
# under ASAN on a loaded machine..
@skipIfAsan
@skipIfEditlineSupportMissing
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
@skipIf(oslist=["freebsd"], bugnumber="llvm.org/pr48316")
def test_breakpoint_callback_command_source(self):
self.build()

View File

@ -17,6 +17,7 @@ class IOHandlerCompletionTest(PExpectTest):
# under ASAN on a loaded machine..
@skipIfAsan
@skipIfEditlineSupportMissing
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_resize(self):
# Start with a small window

View File

@ -17,6 +17,7 @@ class EditlineTest(PExpectTest):
@skipIfAsan
@skipIfEditlineSupportMissing
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_left_right_arrow(self):
"""Test that ctrl+left/right arrow navigates words correctly.