diff options
author | Diana Picus <diana.picus@linaro.org> | 2019-11-19 10:58:52 +0100 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2019-12-03 10:57:42 +0100 |
commit | 6d18e5366c9a0bffe45b179a830483b3f2ec9fa9 (patch) | |
tree | 3bd531e17148a1da7be7b1050316801d4a511064 /lldb/packages/Python/lldbsuite/test/functionalities/breakpoint | |
parent | df943a7a08102ed3d1f632e88b24a024a7c4ba81 (diff) | |
download | bcm5719-llvm-6d18e5366c9a0bffe45b179a830483b3f2ec9fa9.tar.gz bcm5719-llvm-6d18e5366c9a0bffe45b179a830483b3f2ec9fa9.zip |
Mark some tests as xfail on AArch64 Linux
I have either opened new bug reports for these tests, or added links to
existing bugs.
This should help make the lldb-aarch64-ubuntu buildbot green (there will
still be some unexpected passes that someone should look into, but those
can be handled later).
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/breakpoint')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py index 020974ee469..4a571787f01 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py @@ -26,6 +26,8 @@ class BreakpointLocationsTestCase(TestBase): self.assertTrue(breakpoint.IsHardware()) @skipIfWindows + @expectedFailureAll(archs="aarch64", oslist="linux", + bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44055") def test_step_range(self): """Test stepping when hardware breakpoints are required.""" self.build() @@ -47,6 +49,8 @@ class BreakpointLocationsTestCase(TestBase): in error.GetCString()) @skipIfWindows + @expectedFailureAll(archs="aarch64", oslist="linux", + bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44055") def test_step_out(self): """Test stepping out when hardware breakpoints are required.""" self.build() @@ -67,6 +71,8 @@ class BreakpointLocationsTestCase(TestBase): in error.GetCString()) @skipIfWindows + @expectedFailureAll(archs="aarch64", oslist="linux", + bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44055") def test_step_over(self): """Test stepping over when hardware breakpoints are required.""" self.build() @@ -85,6 +91,8 @@ class BreakpointLocationsTestCase(TestBase): ]) @skipIfWindows + @expectedFailureAll(archs="aarch64", oslist="linux", + bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44055") def test_step_until(self): """Test stepping until when hardware breakpoints are required.""" self.build() |