v8/tools/testrunner/local
Daniel Dromboski 8807f0ad48 [tools] More Python 3 compatibility fixes
These should all be forward/backward compatible with Python 2/Python 3.

[tools] Tweak statusfile.py for Python 3

.iteritems() does not exist in Python 3, only .items().

(While .iteritems() was meant to be an optimization over .items()
in Python 2, .items() should work fine, and it is forward/backward
compatible.)


[tools] Fix another Python 3 issue in mb.py

sys.platform used to return e.g. 'linux2', which is 'linux' plus
whatever the first digit of `uname -r` was when Python was built.
As of Python 3.3, it always returns just 'linux' for Linux OSes.
Use `sys.platform.startswith('linux')` for forward/backward
compatibility.


[tools] Make base_runner.py Python 3 compatible

dict.keys() returns a dict_keys in Python 3, whereas it
used to return a simple array. list() is forward/backward
compatible with identical results on Python 2/3 (returns array).

(Tested on Linux x64, trying to recreate NodeJS's CI workflow.)


[tools] Make tools/dev/v8gen.py work with Python 3

dict.keys() returns a dict_keys in Python 3, whereas it
used to return a simple array. list() is forward/backward
compatible with identical results on Python 2/3 (returns array).

Comparing a None-type value numerically used to result in the
None-type value always being considered "less than" the thing
it is compared to. As of Python 3, numerically comparing against
None or None-typed values results in an error. Check if a value
is truthy before numerically comparing it, for forward/backward
compatibility.

print() used to transparently decode byte strings in Python 2.
In Python 3, they must be explicitly decoded first.

(Tested on Linux 64-bit, trying to recreate NodeJS's CI workflow.)

Bug: v8:9871
Change-Id: I059bf98577a67649bbe7ec49848989d468da96b0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2867270
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74369}
2021-05-05 08:24:36 +00:00
..
fake_testsuite [testrunner] enable the progress indicator 2019-02-12 16:03:17 +00:00
__init__.py First commit of new tools/run-tests.py 2012-09-24 09:38:46 +00:00
android.py [test] Fix running refbuilds on Android 2019-11-25 08:03:57 +00:00
command.py [tools] Make killing of processes more robust 2020-07-01 13:35:50 +00:00
pool_unittest.py [test] Abort testing immediately on interrupt and sigterm 2018-02-20 18:02:25 +00:00
pool.py [test] Make pool abort of test runner more robust 2020-02-18 14:08:18 +00:00
statusfile_unittest.py [Py3] Get tools/testrunner/local closer to Py3 2020-06-23 18:08:36 +00:00
statusfile.py [tools] More Python 3 compatibility fixes 2021-05-05 08:24:36 +00:00
testsuite_unittest.py [test] Ignore optimization state in tests on number fuzzer 2019-04-12 12:50:55 +00:00
testsuite.py [Py3] Get tools/testrunner/local closer to Py3 2020-06-23 18:08:36 +00:00
utils.py [ppc64] Skip simd tests if power processor version is earlier than 9 2021-04-29 15:36:04 +00:00
variants.py [wasm] Add variant for --wasm-write-protect-code-memory 2021-04-26 10:25:50 +00:00
verbose.py Preparing v8 to use with python3 /tools/testrunner 2019-02-19 09:23:11 +00:00