mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
[lit] Ensure we get bytes when reading redirected output files.
llvm-svn: 272147
This commit is contained in:
parent
c01530fd2f
commit
bd13a0caaa
@ -401,7 +401,7 @@ def _executeShCmd(cmd, shenv, results, timeoutHelper):
|
||||
for (name, mode, f, path) in sorted(opened_files):
|
||||
if path is not None and mode in ('w', 'a'):
|
||||
try:
|
||||
with open(path) as f:
|
||||
with open(path, 'rb') as f:
|
||||
data = f.read()
|
||||
except:
|
||||
data = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user