forked from OSchip/llvm-project
[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
This commit is contained in:
parent
40441aa86a
commit
05812b65db
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue