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.
2 parents 03168d7 + ff2a12a commit 84f44bfCopy full SHA for 84f44bf
test/lit.cfg
@@ -72,7 +72,7 @@ def darwin_get_sw_vers(commandPrefix=[]):
72
73
def darwin_get_ios_sim_vers():
74
sim_output = subprocess.check_output(['xcrun', 'simctl', 'list', 'runtimes'])
75
- ios_version_str = re.findall(r'iOS \d+\.*\d*',sim_output)
+ ios_version_str = re.findall(r'iOS \d+\.*\d*', sim_output.encode('utf-8'))
76
return [float(v.strip('iOS')) for v in ios_version_str]
77
78
# Returns the "prefix" command that should be prepended to the command line to
0 commit comments