Skip to content

Commit 8c13b75

Browse files
committed
[LLDB] Fix condition in test
1 parent 3d26e6c commit 8c13b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def rosetta_debugserver_installed():
2121
import platform
2222
version = platform.mac_ver()
2323
# Workaround for an undiagnosed problem on green dragon.
24-
if version[0] and version[0][0] == '15' and version[0][1] == '5':
24+
if version[0] == '15.5':
2525
return False
2626
return exists("/Library/Apple/usr/libexec/oah/debugserver")
2727

0 commit comments

Comments
 (0)