https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/173250
This patch skips TestPlatformProcessLaunchGDBServer.test_launch_with_unusual_process_name on Windows which is flaky. The test will be reenabled once it has been fixed. >From 04f27538a51812ff0d02de2465da10ed04a4bce5 Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Mon, 22 Dec 2025 13:21:54 +0100 Subject: [PATCH] [lldb][windows] skip TestPlatformProcessLaunchGDBServer.test_launch_with_unusual_process_name --- .../platform/launchgdbserver/TestPlatformLaunchGDBServer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/commands/platform/launchgdbserver/TestPlatformLaunchGDBServer.py b/lldb/test/API/commands/platform/launchgdbserver/TestPlatformLaunchGDBServer.py index 45d855f5c1938..65f0cefae96b4 100644 --- a/lldb/test/API/commands/platform/launchgdbserver/TestPlatformLaunchGDBServer.py +++ b/lldb/test/API/commands/platform/launchgdbserver/TestPlatformLaunchGDBServer.py @@ -65,6 +65,7 @@ def test_launch_error(self): @skipIfRemote @skipIfDarwin # Uses debugserver for debugging + @skipIfWindows @add_test_categories(["lldb-server"]) def test_launch_with_unusual_process_name(self): """ _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
