Skip to content

Commit aaacffa

Browse files
Milad FaCommit Bot
authored andcommitted
PPC: skip all Simd tests on PPC
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. Change-Id: I963639f1afa0c0ca7be3ca4b2fc06e874235b903 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2693056 Reviewed-by: Zhi An Ng <zhin@chromium.org> Reviewed-by: Deepti Gandluri <gdeepti@chromium.org> Commit-Queue: Milad Fa <mfarazma@redhat.com> Cr-Commit-Position: refs/heads/master@{#72788}
1 parent 29b46b0 commit aaacffa

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

test/message/message.status

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,11 @@
7171
'*': [SKIP], # only relevant for mjsunit tests.
7272
}],
7373

74+
################################################################################
75+
['arch == ppc64', {
76+
# Tests that require Simd enabled.
77+
'wasm-trace-memory': [SKIP],
78+
}],
79+
80+
7481
]

tools/testrunner/base_runner.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,10 @@ def _get_statusfile_variables(self, options):
643643
'--noenable-sse4-1',
644644
'--no-enable-sse4_1'])
645645

646+
# Set no_simd_sse on architectures without Simd enabled.
647+
if self.build_config.arch == 'ppc64':
648+
no_simd_sse = True
649+
646650
return {
647651
"arch": self.build_config.arch,
648652
"asan": self.build_config.asan,

0 commit comments

Comments
 (0)