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.
This commit is contained in:
Samuel Williams 2023-09-07 13:53:51 +12:00 committed by GitHub
parent ac65fc833d
commit 05aaff2191
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
Notes: git 2023-09-07 01:54:11 +00:00
Merged-By: ioquatix <samuel@codeotaku.com>

View File

@ -118,7 +118,7 @@ class TestFiberScheduler < Test::Unit::TestCase
end
def test_autoload
100.times do
10.times do
Object.autoload(:TestFiberSchedulerAutoload, File.expand_path("autoload.rb", __dir__))
thread = Thread.new do