From e223c3d709739d3a64d5a8c0456483ca0296e967 Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Wed, 15 Oct 2025 21:48:38 +0200 Subject: [PATCH] test: make test-worker-prof more tolerant It seems after the recent V8 upgrade, it's no longer safe to assume there'll be 15 ticks per 1500ms. Lower it to 10 ticks. --- test/sequential/test-worker-prof.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/sequential/test-worker-prof.js b/test/sequential/test-worker-prof.js index 69d4b9f590e290..ab373fa85bc239 100644 --- a/test/sequential/test-worker-prof.js +++ b/test/sequential/test-worker-prof.js @@ -77,7 +77,7 @@ if (process.argv[2] === 'child') { // When not tracking Worker threads, only 1 or 2 ticks would // have been recorded. // prof_sampling_interval is by default 1 millisecond. A higher SPIN_MS - // should result in more ticks, while 15 should be safe on most machines. - assert(workerTicks.length > 15, `worker ticks <= 15:\n${workerTicks.join('\n')}`); - assert(parentTicks.length > 15, `parent ticks <= 15:\n${parentTicks.join('\n')}`); + // should result in more ticks, while 10 should be safe on most machines. + assert(workerTicks.length > 10, `worker ticks <= 10:\n${workerTicks.join('\n')}`); + assert(parentTicks.length > 10, `parent ticks <= 10:\n${parentTicks.join('\n')}`); }