From a23ac88274c876cfd878ee5247bc48f3a2f9aff9 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 16 Jun 2021 19:23:35 -0400 Subject: [PATCH] deps: V8: cherry-pick 986299250e6d Original commit message: [wasm-simd] Skip tests which require Simd enabled These tests require Simd enabled which causes failures on machines without the support. They are already skipped on Mips: https://crrev.com/c/2841887 Change-Id: I4b9a9bb3cb208a0e9aa12dc135393bc515ad766e Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2927210 Reviewed-by: Zhi An Ng Commit-Queue: Milad Fa Cr-Commit-Position: refs/heads/master@{#74891} Refs: https://github.com/v8/v8/commit/986299250e6dd176c18055b46b4696bdb37d0bc2 --- common.gypi | 2 +- deps/v8/test/cctest/cctest.status | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/common.gypi b/common.gypi index ef9d5543206fd2..e721566fecddc1 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.9', + 'v8_embedder_string': '-node.10', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/test/cctest/cctest.status b/deps/v8/test/cctest/cctest.status index 54dc4fa3fc2998..a161db83742e5f 100644 --- a/deps/v8/test/cctest/cctest.status +++ b/deps/v8/test/cctest/cctest.status @@ -713,6 +713,10 @@ ['no_simd_hardware == True', { 'test-run-wasm-simd/*': [SKIP], 'test-run-wasm-simd-liftoff/*': [SKIP], + 'test-gc/RunWasmLiftoff_RefTrivialCasts': [SKIP], + 'test-gc/RunWasmTurbofan_RefTrivialCasts': [SKIP], + 'test-run-wasm/RunWasmLiftoff_Select_s128_parameters': [SKIP], + 'test-run-wasm/RunWasmTurbofan_Select_s128_parameters': [SKIP], }], # no_simd_hardware == True ################################################################################