From d24e7c2c7b6b197982bcd5159f55ebaf16952792 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9my=20Lal?= Date: Fri, 12 Aug 2022 16:21:50 +0100 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