diff --git a/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py b/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py index f24a32edbaa7b..525783b3785fb 100644 --- a/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py +++ b/lldb/test/API/tools/lldb-dap/attach-commands/TestDAP_attachCommands.py @@ -12,6 +12,7 @@ class TestDAP_attachCommands(lldbdap_testcase.DAPTestCaseBase): SHARED_BUILD_TESTCASE = False + @skipIfWindows # Wait for module events fails. @skipIfNetBSD # Hangs on NetBSD as well def test_commands(self): """ diff --git a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py index ad48af6364aba..cc3c4764a5fd7 100644 --- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py +++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch_extra_launch_commands.py @@ -2,7 +2,7 @@ Test lldb-dap launch request. """ -from lldbsuite.test.decorators import skipIf +from lldbsuite.test.decorators import skipIf, skipIfWindows from lldbsuite.test.lldbtest import line_number import lldbdap_testcase @@ -12,6 +12,7 @@ class TestDAP_launch_extra_launch_commands(lldbdap_testcase.DAPTestCaseBase): Tests the "launchCommands" with extra launching settings """ + @skipIfWindows # Wait for module events fails. # Flakey on 32-bit Arm Linux. @skipIf(oslist=["linux"], archs=["arm$"]) def test(self):