forked from OSchip/llvm-project
[lit] Try errors="ignore" for decode introduced by r374665
Still trying to fix the same error as in r374666. llvm-svn: 374671
This commit is contained in:
parent
c8ac97edc8
commit
1e98a6c57a
|
@ -97,7 +97,7 @@ def compareTwoTextFiles(flags, filepaths, filelines_bin, encoding):
|
|||
n = flags.num_context_lines):
|
||||
if hasattr(diff, 'decode'):
|
||||
# python 2.7
|
||||
diff = diff.decode(errors="backslashreplace")
|
||||
diff = diff.decode(errors="ignore")
|
||||
sys.stdout.write(diff)
|
||||
exitCode = 1
|
||||
return exitCode
|
||||
|
|
Loading…
Reference in New Issue