shafik added inline comments.
================ Comment at: lldb/test/API/lldbtest.py:123 # In Python 2, string objects can contain Unicode characters. - out = out.decode('utf-8') - err = err.decode('utf-8') + out = out.decode('utf-8', 'replace') + err = err.decode('utf-8', 'replace') ---------------- Maybe add a comment as to why we are using `'replace'` and LLDB and python implementation disagree and this works for now. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D79645/new/ https://reviews.llvm.org/D79645 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits