From 81ccb97024bb5a05f1d27d352ec20d0e83d8e3e7 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 14 Mar 2018 14:16:23 +0000 Subject: [PATCH] [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 --- .../lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py | 1 + 1 file changed, 1 insertion(+) 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 ea98129..06225d3 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. -- 2.7.4