Commit dc0a1b40 authored by LiuYu's avatar LiuYu Committed by Commit Bot

[mips] Skip all Simd tests on MIPS like PPC

Simd unsupported in simulator and some machines on mips.

Original Commit Message:

  As of https://crrev.com/c/2629465, Simd tests cannot pass on
  architectures without Simd support. Tests will need to be
  re-enabled once Simd support is fully implemented on PPC.

Port: aaacffa1
Change-Id: Ic7451211cbe2bfa13952b994ea440189620579cd
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2717158
Auto-Submit: Liu yu <liuyu@loongson.cn>
Reviewed-by: 's avatarDeepti Gandluri <gdeepti@chromium.org>
Commit-Queue: Zhao Jiazhong <zhaojiazhong-hf@loongson.cn>
Cr-Commit-Position: refs/heads/master@{#73067}
parent 79e36b2a
......@@ -70,10 +70,10 @@
}],
################################################################################
['arch == ppc64', {
['arch == ppc64 or arch == mips64el or arch == mipsel', {
# Tests that require Simd enabled.
'wasm-trace-memory': [SKIP],
}],
}], # arch == ppc64 or arch == mips64el or arch == mipsel
]
......@@ -650,6 +650,10 @@ class BaseTestRunner(object):
if self.build_config.arch == 'ppc64':
no_simd_sse = True
if self.build_config.arch == 'mips64el' or \
self.build_config.arch == 'mipsel':
no_simd_sse = not simd_mips
return {
"arch": self.build_config.arch,
"asan": self.build_config.asan,
......
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