diff --git a/lldb/test/API/symbol_ondemand/breakpoint_language/TestBreakpointLanguageOnDemand.py b/lldb/test/API/symbol_ondemand/breakpoint_language/TestBreakpointLanguageOnDemand.py --- a/lldb/test/API/symbol_ondemand/breakpoint_language/TestBreakpointLanguageOnDemand.py +++ b/lldb/test/API/symbol_ondemand/breakpoint_language/TestBreakpointLanguageOnDemand.py @@ -20,6 +20,7 @@ comp_name = comp_unit.GetFileSpec().GetFilename() return comp_name == test_name + @skipIfWindows def test_regex_breakpoint_language(self): """Test that the name regex breakpoint commands obey the language filter.""" @@ -65,6 +66,7 @@ objc_bp.GetNumLocations(), 0, "No ObjC symbol matches") + @skipIfWindows def test_by_name_breakpoint_language(self): """Test that the name regex breakpoint commands obey the language filter.""" diff --git a/lldb/test/API/symbol_ondemand/breakpoint_source_regex/TestSourceTextRegexBreakpoint.py b/lldb/test/API/symbol_ondemand/breakpoint_source_regex/TestSourceTextRegexBreakpoint.py --- a/lldb/test/API/symbol_ondemand/breakpoint_source_regex/TestSourceTextRegexBreakpoint.py +++ b/lldb/test/API/symbol_ondemand/breakpoint_source_regex/TestSourceTextRegexBreakpoint.py @@ -13,6 +13,7 @@ class TestSourceTextRegexBreakpoint(TestBase): mydir = TestBase.compute_mydir(__file__) + @skipIfWindows def test_with_run_command(self): self.build() diff --git a/lldb/test/API/symbol_ondemand/shared_library/TestSharedLib.py b/lldb/test/API/symbol_ondemand/shared_library/TestSharedLib.py --- a/lldb/test/API/symbol_ondemand/shared_library/TestSharedLib.py +++ b/lldb/test/API/symbol_ondemand/shared_library/TestSharedLib.py @@ -38,6 +38,7 @@ ctx = self.platformContext self.shared_lib_name = ctx.shlib_prefix + "foo." + ctx.shlib_extension + @skipIfWindows def test_source_line_breakpoint(self): self.build() self.common_setup() @@ -75,6 +76,7 @@ ) self.assertEqual(7, parent_frame.GetLineEntry().GetLine()) + @skipIfWindows def test_symbolic_breakpoint(self): self.build() self.common_setup() @@ -112,6 +114,7 @@ ) self.assertEqual(7, parent_frame.GetLineEntry().GetLine()) + @skipIfWindows def test_global_variable_hydration(self): self.build() self.common_setup() diff --git a/lldb/test/Shell/SymbolFile/OnDemand/source-breakpoint.test b/lldb/test/Shell/SymbolFile/OnDemand/source-breakpoint.test --- a/lldb/test/Shell/SymbolFile/OnDemand/source-breakpoint.test +++ b/lldb/test/Shell/SymbolFile/OnDemand/source-breakpoint.test @@ -1,5 +1,6 @@ # Test shows that source line breakpoint works with LLDB on demand symbol loading. +# UNSUPPORTED: system-windows # RUN: mkdir -p %t # RUN: cd %t # RUN: %build %p/Inputs/basic.cpp -o basic.out diff --git a/lldb/test/Shell/SymbolFile/OnDemand/symbolic-breakpoint.test b/lldb/test/Shell/SymbolFile/OnDemand/symbolic-breakpoint.test --- a/lldb/test/Shell/SymbolFile/OnDemand/symbolic-breakpoint.test +++ b/lldb/test/Shell/SymbolFile/OnDemand/symbolic-breakpoint.test @@ -1,5 +1,6 @@ # Test shows that symbolic function breakpoint works with LLDB on demand symbol loading. +# UNSUPPORTED: system-windows # RUN: mkdir -p %t # RUN: cd %t # RUN: %build %p/Inputs/basic.cpp -o basic.out