From 9a2a8fd064d9fdc1659695e07017ed1d30a1b13a Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Thu, 14 Aug 2025 14:11:59 -0700 Subject: [PATCH] Increase timeout for a flaky test https://github.com/ruby/ruby/actions/runs/16974964229/job/48121382131 --- test/ruby/test_rubyoptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index fe6ffde07c..b6c76ac73a 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -994,7 +994,7 @@ class TestRubyOptions < Test::Unit::TestCase pid = spawn(EnvUtil.rubybin, :in => s, :out => w) w.close assert_nothing_raised('[ruby-dev:37798]') do - result = EnvUtil.timeout(3) {r.read} + result = EnvUtil.timeout(10) {r.read} end Process.wait pid }