6ea78398aa
The infrastructure runs everything already in Python3, so this is mostly a clean-up. For MB, a python2 holdover was removed and new lint errors were fixed. The renames were automated with: git grep -e "/usr/bin/python$" | cut -d':' -f1 | xargs sed -i 's/#!\/usr\/bin\/python$/#!\/usr\/bin\/python3/1' and git grep -e "/usr/bin/env python$" | cut -d':' -f1 | xargs sed -i 's/#!\/usr\/bin\/env python$/#!\/usr\/bin\/env python3/1' Bug: v8:13148 Change-Id: If4f3c7635e72fa134798d55314ac1aa92ddd01bf Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3811499 Reviewed-by: Liviu Rau <liviurau@google.com> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/main@{#82231}
29 lines
688 B
Python
29 lines
688 B
Python
#!/usr/bin/env python3
|
|
# Copyright 2017 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""
|
|
Fake results processor for testing that just sums some things up.
|
|
"""
|
|
|
|
# for py2/py3 compatibility
|
|
from __future__ import print_function
|
|
|
|
import fileinput
|
|
import re
|
|
|
|
richards = 0.0
|
|
deltablue = 0.0
|
|
|
|
for line in fileinput.input():
|
|
match = re.match(r'^Richards\d: (.*)$', line)
|
|
if match:
|
|
richards += float(match.group(1))
|
|
match = re.match(r'^DeltaBlue\d: (.*)$', line)
|
|
if match:
|
|
deltablue += float(match.group(1))
|
|
|
|
print('Richards: %f' % richards)
|
|
print('DeltaBlue: %f' % deltablue)
|