Skip to content

Commit 8f30db8

Browse files
committed
[LLDB] Skip random failing tests on Arm/AArch64 Linux bots
Following tests have been failing randomly on LLDB Arm and AArch64 Linux builtbots: TestMultilineNavigation.py TestMultilineCompletion.py TestIOHandlerCompletion.py TestGuiBasic.py I have increased allocated CPU resources to these bots but it has not improved situation to an acceptable level. This patch marks them as skipped on Arm/AArch64 for now.
1 parent 0e25867 commit 8f30db8

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

lldb/test/API/commands/expression/multiline-completion/TestMultilineCompletion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def exit_expression_editor(self):
3131
@skipIfAsan
3232
@skipIfEditlineSupportMissing
3333
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr49408')
34+
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
3435
def test_basic_completion(self):
3536
"""Test that we can complete a simple multiline expression"""
3637
self.build()

lldb/test/API/commands/expression/multiline-navigation/TestMultilineNavigation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class TestCase(PExpectTest):
1919
@skipIfAsan
2020
@skipIfEditlineSupportMissing
2121
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr48316')
22+
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
2223
def test_nav_arrow_up(self):
2324
"""Tests that we can navigate back to the previous line with the up arrow"""
2425
self.launch()

lldb/test/API/commands/gui/basic/TestGuiBasic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class BasicGuiCommandTest(PExpectTest):
1515
# under ASAN on a loaded machine..
1616
@skipIfAsan
1717
@skipIfCursesSupportMissing
18+
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
1819
def test_gui(self):
1920
self.build()
2021

lldb/test/API/iohandler/completion/TestIOHandlerCompletion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class IOHandlerCompletionTest(PExpectTest):
1818
@skipIfAsan
1919
@skipIfEditlineSupportMissing
2020
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr49408')
21+
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
2122
def test_completion(self):
2223
self.launch(dimensions=(100,500))
2324

0 commit comments

Comments
 (0)