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) {