We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 781b14e commit a299a0bCopy full SHA for a299a0b
lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
@@ -18,6 +18,11 @@ def apple_silicon():
18
19
20
def rosetta_debugserver_installed():
21
+ import platform
22
+ version = platform.mac_ver()
23
+ # Workaround for an undiagnosed problem on green dragon.
24
+ if version[0] and version[0][0] == '15' and version[0][1] == '5':
25
+ return False
26
return exists("/Library/Apple/usr/libexec/oah/debugserver")
27
28
0 commit comments