diff options
| author | Nitesh Jain <nitesh.jain@imgtec.com> | 2016-10-10 10:47:53 +0000 |
|---|---|---|
| committer | Nitesh Jain <nitesh.jain@imgtec.com> | 2016-10-10 10:47:53 +0000 |
| commit | 2e2c24d2b253902908b65c7ae5245a1a666b18b2 (patch) | |
| tree | d0f1394d7587e91b9f40ad91f478f133d37f0851 /lldb/packages/Python/lldbsuite/test/functionalities/postmortem | |
| parent | 27e651d4f69527b12d02e1f02dd6da9f423f1d4d (diff) | |
| download | bcm5719-llvm-2e2c24d2b253902908b65c7ae5245a1a666b18b2.tar.gz bcm5719-llvm-2e2c24d2b253902908b65c7ae5245a1a666b18b2.zip | |
[LLDB][MIPS] All tests get errors in dotest after this test.
Subscribers: jaydeep, bhushan, slthakur, llvm-commits
llvm-svn: 283739
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/postmortem')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py | 5 |
1 files changed, 5 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 df2a4622740..da6098f88f9 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 @@ -27,11 +27,13 @@ class LinuxCoreTestCase(TestBase): _s390x_regions = 2 @skipIf(oslist=['windows']) + @skipIf(triple='^mips') def test_i386(self): """Test that lldb can read the process information from an i386 linux core file.""" self.do_test("i386", self._i386_pid, self._i386_regions) @skipIf(oslist=['windows']) + @skipIf(triple='^mips') def test_x86_64(self): """Test that lldb can read the process information from an x86_64 linux core file.""" self.do_test("x86_64", self._x86_64_pid, self._x86_64_regions) @@ -39,11 +41,13 @@ class LinuxCoreTestCase(TestBase): # This seems to hang on non-s390x platforms for some reason. Disabling # for now. @skipIf(archs=no_match(['s390x'])) + @skipIf(triple='^mips') 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, self._s390x_regions) @skipIf(oslist=['windows']) + @skipIf(triple='^mips') def test_same_pid_running(self): """Test that we read the information from the core correctly even if we have a running process with the same PID around""" @@ -72,6 +76,7 @@ class LinuxCoreTestCase(TestBase): self.RemoveTempFile("x86_64-pid.core") @skipIf(oslist=['windows']) + @skipIf(triple='^mips') def test_two_cores_same_pid(self): """Test that we handle the situation if we have two core files with the same PID around""" |

