diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2016-04-14 17:36:41 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2016-04-14 17:36:41 +0000 |
commit | 4f42310dfb0cb4ef2a9c8c6920e7e730aa212012 (patch) | |
tree | 264545241f28a64e237c9fbad8b5d8792e254a9f /lldb/packages/Python/lldbsuite/test | |
parent | b72a65ff535673b5c7ef89372d6a0fdc70dd38c6 (diff) | |
download | bcm5719-llvm-4f42310dfb0cb4ef2a9c8c6920e7e730aa212012.tar.gz bcm5719-llvm-4f42310dfb0cb4ef2a9c8c6920e7e730aa212012.zip |
Disable LinuxCoreTestCase.test_s390x
This seems to hang on non-s390x hosts. Disable for now to get the build
bots going again.
llvm-svn: 266343
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py index 59bf6900816..bdd3652ee9e 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py @@ -30,6 +30,8 @@ class LinuxCoreTestCase(TestBase): """Test that lldb can read the process information from an x86_64 linux core file.""" self.do_test("x86_64", self._x86_64_pid) + # This seems to hang on non-s390x platforms for some reason. Disabling for now. + @skipIf(archs=no_match(['s390x'])) def test_s390x(self): """Test that lldb can read the process information from an s390x linux core file.""" self.do_test("s390x", self._s390x_pid) |