Skip to content

Commit

Permalink
Reduce number of iterations in TestFiberScheduler#test_autoload. (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
ioquatix committed Sep 7, 2023
1 parent ac65fc8 commit 05aaff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fiber/test_scheduler.rb
Expand Up @@ -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
Expand Down

0 comments on commit 05aaff2

Please sign in to comment.