From 38fd93c9a8669929dac09ad9441937bc0bb58c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 7 May 2020 18:46:11 +0200 Subject: [PATCH] test: stop testing --interpreted-frames-native-stack for s390x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit V8 does not support the flag on this architecture anymore. Backport-PR-URL: https://github.com/nodejs/node/pull/33376 PR-URL: https://github.com/nodejs/node/pull/32831 Reviewed-By: Anna Henningsen Reviewed-By: Michaƫl Zasso Reviewed-By: Jiawen Geng Reviewed-By: Colin Ihrig --- test/parallel/test-cli-node-options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-cli-node-options.js b/test/parallel/test-cli-node-options.js index 2fc22ca477ce94..a0341eaf015371 100644 --- a/test/parallel/test-cli-node-options.js +++ b/test/parallel/test-cli-node-options.js @@ -74,8 +74,8 @@ expect('--stack-trace-limit=100', /(\s*at f \(\[(eval|worker eval)\]:1:\d*\)\r?\n)/, '(function f() { f(); })();', true); -// Unsupported on arm. See https://crbug.com/v8/8713. -if (!['arm', 'arm64'].includes(process.arch)) +// Unsupported on arm and s390. See https://crbug.com/v8/8713. +if (!['arm', 'arm64', 's390x'].includes(process.arch)) expect('--interpreted-frames-native-stack', 'B\n'); function expectNoWorker(opt, want, command, wantsError) {