Author: yurydelendik
Date: Tue Mar  5 09:09:26 2019
New Revision: 355413

URL: http://llvm.org/viewvc/llvm-project?rev=355413&view=rev
Log:
[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

Modified:
    
lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py

Modified: 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py?rev=355413&r1=355412&r2=355413&view=diff
==============================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
 (original)
+++ 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
 Tue Mar  5 09:09:26 2019
@@ -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()


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to