[Lldb-commits] [lldb] 9a0aa92 - [LLDB] Disable rosetta test on green dragon

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 27 09:48:30 PDT 2025


Author: Adrian Prantl
Date: 2025-10-27T09:48:19-07:00
New Revision: 9a0aa922ed3e0accc2d2fbfffa619e249a7c84ac

URL: https://github.com/llvm/llvm-project/commit/9a0aa922ed3e0accc2d2fbfffa619e249a7c84ac
DIFF: https://github.com/llvm/llvm-project/commit/9a0aa922ed3e0accc2d2fbfffa619e249a7c84ac.diff

LOG: [LLDB] Disable rosetta test on green dragon

Added: 
    

Modified: 
    lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
index 0f40dfd09c958..4516c9b58ba37 100644
--- a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
+++ b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
@@ -18,6 +18,11 @@ def apple_silicon():
 
 
 def rosetta_debugserver_installed():
+    import platform
+    version = platform.mac_ver()
+    # Workaround for an undiagnosed problem on green dragon.
+    if version[0] == '15' and version[1] == '5':
+        return False
     return exists("/Library/Apple/usr/libexec/oah/debugserver")
 
 


        


More information about the lldb-commits mailing list