[lldb] Mark abort signal test unsupported on AArch64 Linux

This has started failing since we moved our bots to Focal.
For unknown reasons the abort_caller stack is missing when
we check from the handler breakpoint.

Mark unsupported while I investigate.
This commit is contained in:
David Spickett 2021-10-07 16:08:08 +00:00
parent 20c074ee96
commit 5ecdb77fc5

View File

@ -16,6 +16,8 @@ class HandleAbortTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
@skipIfWindows # signals do not exist on Windows
# Fails on Ubuntu Focal
@skipIf(archs=["aarch64"], oslist=["linux"])
@expectedFailureNetBSD
def test_inferior_handle_sigabrt(self):
"""Inferior calls abort() and handles the resultant SIGABRT.