Skip to content

Commit b8fdde4

Browse files
targoscodebytere
authored andcommitted
Revert "test: stop testing --interpreted-frames-native-stack for s390x"
This reverts commit 38fd93c. Refs: #33702 PR-URL: #33794 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Beth Griggs <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 07c21d0 commit b8fdde4

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 and s390. See https://crbug.com/v8/8713.
78-
if (!['arm', 'arm64', 's390x'].includes(process.arch))
77+
// Unsupported on arm. See https://crbug.com/v8/8713.
78+
if (!['arm', 'arm64'].includes(process.arch))
7979
expect('--interpreted-frames-native-stack', 'B\n');
8080

8181
// Workers can't eval as ES Modules. https://github.com/nodejs/node/issues/30682

0 commit comments

Comments
 (0)