[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: aaacffa1e0
Change-Id: Ic7451211cbe2bfa13952b994ea440189620579cd
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2717158
Auto-Submit: Liu yu <liuyu@loongson.cn>
Reviewed-by: Deepti Gandluri <gdeepti@chromium.org>
Commit-Queue: Zhao Jiazhong <zhaojiazhong-hf@loongson.cn>
Cr-Commit-Position: refs/heads/master@{#73067}
This commit is contained in:
parent
79e36b2a1b
commit
dc0a1b4081
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user