diff options
author | Yury Delendik <ydelendik@mozilla.com> | 2019-03-05 17:09:26 +0000 |
---|---|---|
committer | Yury Delendik <ydelendik@mozilla.com> | 2019-03-05 17:09:26 +0000 |
commit | 05812b65db6dedaa6fa36926dd6a1d4793362f30 (patch) | |
tree | c719d2ee4c750914c999080c3f546d03d2c2d1d0 /lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py | |
parent | 40441aa86a00417df0849201629cd45dd962c447 (diff) | |
download | bcm5719-llvm-05812b65db6dedaa6fa36926dd6a1d4793362f30.tar.gz bcm5719-llvm-05812b65db6dedaa6fa36926dd6a1d4793362f30.zip |
[lldb] Disable some of TestJITLoaderGDB.py tests on Windows
The test expect sample executable code be built, but fails on Windows.
Review comment https://reviews.llvm.org/D57689#1418597
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D57689
llvm-svn: 355413
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py b/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py index e04c7577064..90d3a2cdbe6 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py @@ -58,6 +58,7 @@ class JITLoaderGDBTestCase(TestBase): self.expect("settings show plugin.jit-loader.gdb.enable", substrs=["plugin.jit-loader.gdb.enable (enum) = default"]) + @skipIfWindows # This test fails on Windows during C code build def test_jit_int_on(self): """Tests interface with 'enable' settings 'on'""" self.build() @@ -87,6 +88,7 @@ class JITLoaderGDBTestCase(TestBase): self.assertIn( "SetJITBreakpoint setting JIT breakpoint", logcontent) + @skipIfWindows # This test fails on Windows during C code build def test_jit_int_off(self): """Tests interface with 'enable' settings 'off'""" self.build() |