Skip to content

Commit

Permalink
Revert "test: stop testing --interpreted-frames-native-stack for s390x"
Browse files Browse the repository at this point in the history
This reverts commit 38fd93c.

Refs: nodejs#33702
  • Loading branch information
targos committed Jun 8, 2020
1 parent 651088c commit 805c172
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-cli-node-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 and s390. See https://crbug.com/v8/8713.
if (!['arm', 'arm64', 's390x'].includes(process.arch))
// Unsupported on arm. See https://crbug.com/v8/8713.
if (!['arm', 'arm64'].includes(process.arch))
expect('--interpreted-frames-native-stack', 'B\n');

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

0 comments on commit 805c172

Please sign in to comment.