From cb2d0144e6f9dfabd2c32acd8a4b4985bf65f9fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9my=20Lal?= Date: Tue, 15 Nov 2022 03:51:54 +0000 Subject: [PATCH] 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 --- test/parallel/test-cli-node-options.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-cli-node-options.js b/test/parallel/test-cli-node-options.js index 2d34a56e0..04529f214 100644 --- a/test/parallel/test-cli-node-options.js +++ b/test/parallel/test-cli-node-options.js @@ -70,7 +70,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)/, -- 2.30.2