diff options
Diffstat (limited to 'debuginfo-tests')
-rw-r--r-- | debuginfo-tests/lit.cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debuginfo-tests/lit.cfg.py b/debuginfo-tests/lit.cfg.py index c47f453f74c..126f6a0571d 100644 --- a/debuginfo-tests/lit.cfg.py +++ b/debuginfo-tests/lit.cfg.py @@ -89,7 +89,7 @@ lit.util.usePlatformSdkOnDarwin(config, lit_config) if platform.system() == 'Darwin': import subprocess - xcode_lldb_vers = subprocess.check_output(['xcrun', 'lldb', '--version']) + xcode_lldb_vers = subprocess.check_output(['xcrun', 'lldb', '--version']).decode("utf-8") match = re.search('lldb-(\d+)', xcode_lldb_vers) if match: apple_lldb_vers = int(match.group(1)) |