From: Jérémy Lal Date: Mon, 13 Jun 2022 07:11:34 +0000 (+0100) Subject: on mipsel, mips64el, node --jitless segfaults X-Git-Tag: archive/raspbian/18.12.1+dfsg-2+rpi1~1^2^2^2^2^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=56518d883fd27f33886915e83ac4986855472285;p=nodejs.git on mipsel, mips64el, node --jitless segfaults Last-Update: 2020-06-03 Forwarded: https://github.com/nodejs/node/issues/33703 Gbp-Pq: Topic mips Gbp-Pq: Name no_jitless.patch --- diff --git a/test/parallel/test-cli-node-options.js b/test/parallel/test-cli-node-options.js index 0e824fe07..98d4612c9 100644 --- a/test/parallel/test-cli-node-options.js +++ b/test/parallel/test-cli-node-options.js @@ -69,7 +69,8 @@ if (common.hasCrypto) { expect('--abort_on-uncaught_exception', 'B\n'); expect('--disallow-code-generation-from-strings', 'B\n'); expect('--huge-max-old-generation-size', 'B\n'); -expect('--jitless', 'B\n'); +if (!['mipsel', 'mips64el'].includes(process.arch)) + expect('--jitless', 'B\n'); expect('--max-old-space-size=0', 'B\n'); expect('--stack-trace-limit=100', /(\s*at f \(\[(eval|worker eval)\]:1:\d*\)\r?\n)/,