diff options
author | Michal Gorny <mgorny@gentoo.org> | 2019-07-29 14:32:40 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2019-07-29 14:32:40 +0000 |
commit | e0ab4c8ee468d1b747e09bc6d1d1f8617a897d4a (patch) | |
tree | 53c2ddb5f152faa39693e3738aca4addad4cb627 /lldb/packages/Python/lldbsuite/test | |
parent | e9ee7b47d42b3e9f645810e65905a43b583d55c7 (diff) | |
download | bcm5719-llvm-e0ab4c8ee468d1b747e09bc6d1d1f8617a897d4a.tar.gz bcm5719-llvm-e0ab4c8ee468d1b747e09bc6d1d1f8617a897d4a.zip |
[lldb] [test] Mark three new tests XFAIL on NetBSD
llvm-svn: 367228
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py | 2 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py b/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py index 2d6baa1a2f2..dc51a3d4a36 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py @@ -20,6 +20,7 @@ class ExecTestCase(TestBase): @expectedFailureAll(archs=['i386'], bugnumber="rdar://28656532") @expectedFailureAll(oslist=["ios", "tvos", "watchos", "bridgeos"], bugnumber="rdar://problem/34559552") # this exec test has problems on ios systems + @expectedFailureNetBSD @skipIfSanitized # rdar://problem/43756823 @skipIfWindows def test_hitting_exec (self): @@ -27,6 +28,7 @@ class ExecTestCase(TestBase): @expectedFailureAll(archs=['i386'], bugnumber="rdar://28656532") @expectedFailureAll(oslist=["ios", "tvos", "watchos", "bridgeos"], bugnumber="rdar://problem/34559552") # this exec test has problems on ios systems + @expectedFailureNetBSD @skipIfSanitized # rdar://problem/43756823 @skipIfWindows def test_skipping_exec (self): diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py b/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py index 022ad929162..65f03c768b6 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py @@ -19,6 +19,7 @@ class HandleAbortTestCase(TestBase): NO_DEBUG_INFO_TESTCASE = True @skipIfWindows # signals do not exist on Windows + @expectedFailureNetBSD def test_inferior_handle_sigabrt(self): """Inferior calls abort() and handles the resultant SIGABRT. Stopped at a breakpoint in the handler, verify that the backtrace |