Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion test/parallel/test-worker-memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ const assert = require('assert');
const util = require('util');
const { Worker } = require('worker_threads');

const numWorkers = +process.env.JOBS || require('os').cpus().length;
let numWorkers = +process.env.JOBS || require('os').cpus().length;
if (numWorkers > 20) {
// Cap the number of workers at 20 (as an even divsor of 60 used as
Comment thread
mhdawson marked this conversation as resolved.
Outdated
// the total number of workers started) otherwise the test fails on
// machines with high core counts.
numWorkers = 20;
}

// Verify that a Worker's memory isn't kept in memory after the thread finishes.

Expand Down