https://github.com/duow310 created https://github.com/llvm/llvm-project/pull/215417
None >From 41634276fe15765d65df513f84901607120a9338 Mon Sep 17 00:00:00 2001 From: Duo Wang <[email protected]> Date: Wed, 5 Aug 2026 23:08:25 -0700 Subject: [PATCH] [lldb] Expand workaround in TestLaunchProcessPosixSpawn for Rosetta2 debugserver issue to cover Swift CI --- lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py index a74f34154bf92..f0b88a8f5d909 100644 --- a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py +++ b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py @@ -21,7 +21,7 @@ def rosetta_debugserver_installed(): import platform version = platform.mac_ver() # Workaround for an undiagnosed problem on green dragon. - if version[0] == '15.5': + if version[0] == '15.5' or version[0] == '25.5': return False return exists("/Library/Apple/usr/libexec/oah/debugserver") _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
