From 05aaff2191cbe777d1efb915ab9652eeaa1c16b8 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Thu, 7 Sep 2023 13:53:51 +1200 Subject: [PATCH] Reduce number of iterations in `TestFiberScheduler#test_autoload`. (#8391) `ppc64le` appears to be struggling with this test due to timeout. Let's see if reducing the number of iterations can help improve the test performance. --- test/fiber/test_scheduler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fiber/test_scheduler.rb b/test/fiber/test_scheduler.rb index f8993bb18f3956..34effad816316a 100644 --- a/test/fiber/test_scheduler.rb +++ b/test/fiber/test_scheduler.rb @@ -118,7 +118,7 @@ def test_current_scheduler end def test_autoload - 100.times do + 10.times do Object.autoload(:TestFiberSchedulerAutoload, File.expand_path("autoload.rb", __dir__)) thread = Thread.new do