[LLDB] Skip TestExitDuringExpression on aarch64/linux buildbot

TestExitDuringExpression test_exit_before_one_thread_no_unwind fails
sporadically on both Arm and AArch64 linux buildbots. This seems like
manifesting itself on a fully loaded machine. I have not found a reliable
timeout value so marking it skip for now.
This commit is contained in:
Muhammad Omair Javaid 2021-06-22 16:19:48 +05:00
parent bb6afc69b2
commit 28058d4cd1
1 changed files with 1 additions and 1 deletions

View File

@ -23,6 +23,7 @@ class TestExitDuringExpression(TestBase):
self.exiting_expression_test(True, True)
@skipIfWindows
@skipIf(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr48414")
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48414")
@expectedFailureNetBSD
def test_exit_before_one_thread_no_unwind(self):
@ -109,4 +110,3 @@ class TestExitDuringExpression(TestBase):
ret_val_value = ret_val.GetValueAsSigned(error)
self.assertTrue(error.Success(), "Got ret_val's value")
self.assertEqual(ret_val_value, 10, "We put the right value in ret_val")