diff options
author | Stella Stamenova <stilis@microsoft.com> | 2019-07-09 18:18:02 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2019-07-09 18:18:02 +0000 |
commit | 2ea514c5662f1c69642f21c9cc32c0fbfb8e9ffb (patch) | |
tree | 9478affba9f5b95d32675157ee7e9f25ea38c3af /lldb/packages/Python/lldbsuite/test | |
parent | 631b5f7dc0e9dab76355f8043b03727b0cb7d62d (diff) | |
download | bcm5719-llvm-2ea514c5662f1c69642f21c9cc32c0fbfb8e9ffb.tar.gz bcm5719-llvm-2ea514c5662f1c69642f21c9cc32c0fbfb8e9ffb.zip |
[lldb-suite] Skip TestMachCore on Windows
This test was originally marked as expected failure on Windows, but it is timing out instead of outright failing now. The expectedFailure attribute does not correctly track timeouts (as in, they don't count as failures), so now this is causing the test suite to fail.
llvm-svn: 365527
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py index a299a4308bc..b03ea8da9bc 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py @@ -26,7 +26,10 @@ class MachCoreTestCase(TestBase): lldb.DBG.SetSelectedPlatform(self._initial_platform) super(MachCoreTestCase, self).tearDown() - @expectedFailureAll(bugnumber="llvm.org/pr37371", hostoslist=["windows"]) + # This was originally marked as expected failure on Windows, but it has + # started timing out instead, so the expectedFailure attribute no longer + # correctly tracks it: llvm.org/pr37371 + @skipIfWindows def test_selected_thread(self): """Test that the right thread is selected after a core is loaded.""" # Create core form YAML. |