diff options
Diffstat (limited to 'deps/v8/tools/testrunner/local/utils.py')
-rw-r--r-- | deps/v8/tools/testrunner/local/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deps/v8/tools/testrunner/local/utils.py b/deps/v8/tools/testrunner/local/utils.py index cb6c350e4e..c880dfc34e 100644 --- a/deps/v8/tools/testrunner/local/utils.py +++ b/deps/v8/tools/testrunner/local/utils.py @@ -102,6 +102,8 @@ def DefaultArch(): return 'ia32' elif machine == 'amd64': return 'ia32' + elif machine == 's390x': + return 's390' elif machine == 'ppc64': return 'ppc' else: |