mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +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):
|
for (name, mode, f, path) in sorted(opened_files):
|
||||||
if path is not None and mode in ('w', 'a'):
|
if path is not None and mode in ('w', 'a'):
|
||||||
try:
|
try:
|
||||||
with open(path) as f:
|
with open(path, 'rb') as f:
|
||||||
data = f.read()
|
data = f.read()
|
||||||
except:
|
except:
|
||||||
data = None
|
data = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user