diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-03-14 14:16:23 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-03-14 14:16:23 +0000 |
commit | 81ccb97024bb5a05f1d27d352ec20d0e83d8e3e7 (patch) | |
tree | a4562d9d2a95b002e3b9127d8ad5212898bd7de2 /lldb/packages/Python/lldbsuite/test/functionalities | |
parent | 3408caf68662ff8df209e52ab3aa4e27c14a371d (diff) | |
download | bcm5719-llvm-81ccb97024bb5a05f1d27d352ec20d0e83d8e3e7.tar.gz bcm5719-llvm-81ccb97024bb5a05f1d27d352ec20d0e83d8e3e7.zip |
[test] Disable TestMachCore everywhere except on Darwin
Apparently the parser is wrapped inside ifdef's so the logic isn't
available on non-Darwin platforms.
Should fix build bot failure:
http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-cmake/builds/20463
llvm-svn: 327512
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py | 1 |
1 files changed, 1 insertions, 0 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 ea981292157..06225d3923c 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,6 +26,7 @@ class MachCoreTestCase(TestBase): lldb.DBG.SetSelectedPlatform(self._initial_platform) super(MachCoreTestCase, self).tearDown() + @skipUnlessDarwin def test_selected_thread(self): """Test that the right thread is selected after a core is loaded.""" # Create core form YAML. |