X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fbenchmarks-utils.js;h=c04162e1a617d704708b56496040640947e22171;hb=54db4c85a9468f121dbd3939c779a5f14e23c937;hp=30af25c927c38edc190ae2c5538a9c22e4569788;hpb=e4bc7a498d48e2773b2e68fd4ffcaf4d328d5a0b;p=poolifier.git diff --git a/benchmarks/benchmarks-utils.js b/benchmarks/benchmarks-utils.js index 30af25c9..c04162e1 100644 --- a/benchmarks/benchmarks-utils.js +++ b/benchmarks/benchmarks-utils.js @@ -9,7 +9,7 @@ async function runPoolifierTest (pool, { tasks, workerData }) { .then(() => { executions++ if (executions === tasks) { - return resolve('FINISH') + return resolve({ ok: 1 }) } return null }) @@ -31,8 +31,11 @@ function jsonIntegerSerialization (n) { } function generateRandomInteger (max = Number.MAX_SAFE_INTEGER, min = 0) { + if (max < min || max < 0 || min < 0) { + throw new RangeError('Invalid interval') + } max = Math.floor(max) - if (min) { + if (min != null && min !== 0) { min = Math.ceil(min) return Math.floor(Math.random() * (max - min + 1)) + min } @@ -77,13 +80,7 @@ function executeWorkerFunction (data) { } } -const LIST_FORMATTER = new Intl.ListFormat('en-US', { - style: 'long', - type: 'conjunction' -}) - module.exports = { - LIST_FORMATTER, WorkerFunctions, executeWorkerFunction, generateRandomInteger,