Skip to content

Commit b6da777

Browse files
committed
test: stop testing --interpreted-frames-native-stack for s390x
V8 does not support the flag on this architecture anymore. Backport-PR-URL: #33376 PR-URL: #32831 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 5cad007 commit b6da777

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-cli-node-options.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ expect('--stack-trace-limit=100',
7474
/(\s*at f \(\[(eval|worker eval)\]:1:\d*\)\r?\n)/,
7575
'(function f() { f(); })();',
7676
true);
77-
// Unsupported on arm. See https://crbug.com/v8/8713.
78-
if (!['arm', 'arm64'].includes(process.arch))
77+
// Unsupported on arm and s390. See https://crbug.com/v8/8713.
78+
if (!['arm', 'arm64', 's390x'].includes(process.arch))
7979
expect('--interpreted-frames-native-stack', 'B\n');
8080

8181
function expectNoWorker(opt, want, command, wantsError) {

0 commit comments

Comments
 (0)