Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2021-04-19 11:11:36 +0300
committerMichaël Zasso <targos@protonmail.com>2021-06-14 09:11:45 +0300
commiteac377bc15518e54f88d430fca3e2d1d699b6790 (patch)
tree0ac47bbcecee713593e87e19be03e018b47b000b /deps
parent1a7c8a12c1f85030125d98c6b26f8c0f00f49150 (diff)
deps: V8: backport aaacffa1e003
Original commit message: 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} Refs: https://github.com/v8/v8/commit/aaacffa1e0039d23d46194b4f2d0ce553e17a4f5 PR-URL: https://github.com/nodejs/node/pull/38273 Backport-PR-URL: https://github.com/nodejs/node/pull/38991 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Mary Marchini <oss@mmarchini.me>
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/test/message/message.status5
-rw-r--r--deps/v8/tools/testrunner/base_runner.py4
2 files changed, 9 insertions, 0 deletions
diff --git a/deps/v8/test/message/message.status b/deps/v8/test/message/message.status
index 03c7d6618c4..4301867fdf6 100644
--- a/deps/v8/test/message/message.status
+++ b/deps/v8/test/message/message.status
@@ -70,6 +70,11 @@
}],
################################################################################
+['arch == ppc64', {
+ # Tests that require Simd enabled.
+ 'wasm-trace-memory': [SKIP],
+}],
+
['arch == mips64el or arch == mipsel', {
# Tests that require Simd enabled.
'wasm-trace-memory': [SKIP],
diff --git a/deps/v8/tools/testrunner/base_runner.py b/deps/v8/tools/testrunner/base_runner.py
index 7b28d486cc9..76aff630ff2 100644
--- a/deps/v8/tools/testrunner/base_runner.py
+++ b/deps/v8/tools/testrunner/base_runner.py
@@ -654,6 +654,10 @@ class BaseTestRunner(object):
self.build_config.arch == 'mipsel':
no_simd_sse = not simd_mips
+ # Set no_simd_sse on architectures without Simd enabled.
+ if self.build_config.arch == 'ppc64':
+ no_simd_sse = True
+
return {
"arch": self.build_config.arch,
"asan": self.build_config.asan,