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/load_unload/TestLoadUnload.py | |
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/load_unload/TestLoadUnload.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py b/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py index 02e9198e38d..ae0934c7461 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py @@ -363,12 +363,16 @@ class LoadUnloadTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support @skipIfWindows # Windows doesn't have dlopen and friends, dynamic libraries work differently + @expectedFailureAll(archs="aarch64", oslist="linux", + bugnumber="https://bugs.llvm.org/show_bug.cgi?id=27806") def test_step_over_load(self): self.setSvr4Support(False) self.run_step_over_load() @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support @skipIfWindows # Windows doesn't have dlopen and friends, dynamic libraries work differently + @expectedFailureAll(archs="aarch64", oslist="linux", + bugnumber="https://bugs.llvm.org/show_bug.cgi?id=27806") def test_step_over_load_with_svr4(self): self.setSvr4Support(True) self.run_step_over_load() |