Commit a7a0b765 authored by Michael Achenbach's avatar Michael Achenbach Committed by V8 LUCI CQ

[infra] More Python3 test-runner fixes

Bug: chromium:1292013
Change-Id: Ifcaad3fe346e59914050b34969bd63a230166491
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3452116
Auto-Submit: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: 's avatarAlmothana Athamneh <almuthanna@chromium.org>
Commit-Queue: Almothana Athamneh <almuthanna@chromium.org>
Cr-Commit-Position: refs/heads/main@{#79047}
parent 4b2c3ef0
......@@ -4,8 +4,10 @@
try: # Python3
from itertools import zip_longest
PYTHON3 = True
except ImportError: # Python2
from itertools import izip_longest as zip_longest
PYTHON3 = False
from ..testproc.base import (
DROP_RESULT, DROP_OUTPUT, DROP_PASS_OUTPUT, DROP_PASS_STDOUT)
......@@ -143,9 +145,11 @@ class ExpectedOutProc(OutProc):
def _is_failure_output(self, output):
if output.exit_code != 0:
return True
return True
with open(self._expected_filename, 'r') as f:
# TODO(https://crbug.com/1292013): Simplify after Python3 migration.
kwargs = {'encoding': 'utf-8'} if PYTHON3 else {}
with open(self._expected_filename, 'r', **kwargs) as f:
expected_lines = f.readlines()
for act_iterator in self._act_block_iterator(output):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment