From bd87fe659adae9736112b5173602b26b0117971c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 3 Nov 2024 12:08:27 +0100 Subject: [PATCH] Revert "test: remove unneeded Linux ignore" This reverts commit 4fd41ee03fe16c848990c37c754be9aa69f7d2c1. --- tests/pools/selection-strategies/selection-strategies.test.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/pools/selection-strategies/selection-strategies.test.mjs b/tests/pools/selection-strategies/selection-strategies.test.mjs index cfbf5ead..dac60413 100644 --- a/tests/pools/selection-strategies/selection-strategies.test.mjs +++ b/tests/pools/selection-strategies/selection-strategies.test.mjs @@ -1634,6 +1634,7 @@ describe('Selection strategies test suite', () => { it({ name: 'Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool', + ignore: Deno.build.os === 'linux', fn: async () => { const pool = new DynamicThreadPool( min, @@ -1722,6 +1723,7 @@ describe('Selection strategies test suite', () => { it({ name: 'Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool with median runtime statistic', + ignore: Deno.build.os === 'linux', fn: async () => { const pool = new DynamicThreadPool( min, @@ -2070,6 +2072,7 @@ describe('Selection strategies test suite', () => { it({ name: 'Verify INTERLEAVED_WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool', + ignore: Deno.build.os === 'linux', fn: async () => { const pool = new DynamicThreadPool( min,