Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2022-04-11 20:55:55 +0300
committerMichaël Zasso <targos@protonmail.com>2022-04-28 07:56:13 +0300
commit6bd24204ea14a87046ad845ad34060f0f371b522 (patch)
treed5959bbbac0db314b3b4838029832ed3a77d09b7 /test
parent29c8411f992a74682fad4a6715452161b64a739b (diff)
bootstrap: use the isolate snapshot in workers
PR-URL: https://github.com/nodejs/node/pull/42702 Refs: https://github.com/nodejs/node/issues/35711 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-worker-nearheaplimit-deadlock.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/parallel/test-worker-nearheaplimit-deadlock.js b/test/parallel/test-worker-nearheaplimit-deadlock.js
index 1f38bc074da..cf4c0d972c8 100644
--- a/test/parallel/test-worker-nearheaplimit-deadlock.js
+++ b/test/parallel/test-worker-nearheaplimit-deadlock.js
@@ -10,7 +10,11 @@ if (!process.env.HAS_STARTED_WORKER) {
resourceLimits: {
maxYoungGenerationSizeMb: 0,
maxOldGenerationSizeMb: 0
- }
+ },
+ // With node snapshot the OOM can occur during the deserialization of
+ // the context, so disable it since we want the OOM to occur during
+ // the creation of the message port.
+ execArgv: [ ...process.execArgv, '--no-node-snapshot']
};
const worker = new Worker(__filename, opts);