Revert "test: stop testing --interpreted-frames-native-stack for s390x"

This reverts commit 38fd93c9a8669929dac09ad9441937bc0bb58c6c.

Refs: https://github.com/nodejs/node/pull/33702

PR-URL: https://github.com/nodejs/node/pull/33794
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
pull/33669/head
Michaël Zasso 2020-06-08 17:40:52 +02:00
parent 89428c7a2d
commit 76ceaff270
No known key found for this signature in database
GPG Key ID: 770F7A9A5AE15600
1 changed files with 2 additions and 2 deletions

View File

@ -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