diff options
| author | Zachary Turner <zturner@google.com> | 2016-10-05 20:47:17 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-10-05 20:47:17 +0000 |
| commit | 9c69bc9776110df35cb538d6709bf2f20a98b35c (patch) | |
| tree | 55907e7bc0f0bd879e6284570644beac1393588d /lldb/packages/Python/lldbsuite/test/functionalities/postmortem | |
| parent | cacfb554a81f29a76f4bcd9229416254ecb6268d (diff) | |
| download | bcm5719-llvm-9c69bc9776110df35cb538d6709bf2f20a98b35c.tar.gz bcm5719-llvm-9c69bc9776110df35cb538d6709bf2f20a98b35c.zip | |
Fixup the xfail situation on Windows.
Xfails added and/or removed to reflect the current state of Windows.
llvm-svn: 283380
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/postmortem')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/linux-core/TestLinuxCore.py | 4 |
1 files changed, 4 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 197a0378d99..df2a4622740 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 @@ -26,10 +26,12 @@ class LinuxCoreTestCase(TestBase): _x86_64_regions = 5 _s390x_regions = 2 + @skipIf(oslist=['windows']) 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']) 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) @@ -41,6 +43,7 @@ class LinuxCoreTestCase(TestBase): """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']) 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""" @@ -68,6 +71,7 @@ class LinuxCoreTestCase(TestBase): self.RemoveTempFile("x86_64-pid.out") self.RemoveTempFile("x86_64-pid.core") + @skipIf(oslist=['windows']) def test_two_cores_same_pid(self): """Test that we handle the situation if we have two core files with the same PID around""" |

