Author: Felipe de Azevedo Piovezan Date: 2025-12-02T16:14:04Z New Revision: cdc41478a0142529e57d2669a3025601f5d136c0
URL: https://github.com/llvm/llvm-project/commit/cdc41478a0142529e57d2669a3025601f5d136c0 DIFF: https://github.com/llvm/llvm-project/commit/cdc41478a0142529e57d2669a3025601f5d136c0.diff LOG: [lldb][shell tests] Properly fix fallout from c8031c3dd743 Added: Modified: lldb/test/Shell/helper/toolchain.py Removed: ################################################################################ diff --git a/lldb/test/Shell/helper/toolchain.py b/lldb/test/Shell/helper/toolchain.py index b0d4e272d5646..0c8c39d37e089 100644 --- a/lldb/test/Shell/helper/toolchain.py +++ b/lldb/test/Shell/helper/toolchain.py @@ -226,7 +226,7 @@ def use_support_substitutions(config): except OSError: res = -1 if res == 0 and out: - sdk_path = str(out) + sdk_path = out.decode("utf-8") llvm_config.lit_config.note("using SDKROOT: %r" % sdk_path) host_flags += ["-isysroot", sdk_path] elif sys.platform != "win32": _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
