diff options
author | Hiroshi SHIBATA <[email protected]> | 2025-02-13 14:13:47 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-02-13 14:13:53 +0900 |
commit | 45397f828449498696899b416b7dfcd91ca82455 (patch) | |
tree | 9e856ede30f50423a29ff1278b7878a6775066f7 /test/ruby | |
parent | cf00b31b5d9882325d2124cb257fb6a3476e0d78 (diff) |
Extend timeout with resolv.rb and Windows platform. It's expired with 10sec sometimes.
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_require_lib.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_require_lib.rb b/test/ruby/test_require_lib.rb index a88279727e..81c2fdf833 100644 --- a/test/ruby/test_require_lib.rb +++ b/test/ruby/test_require_lib.rb @@ -17,7 +17,7 @@ class TestRequireLib < Test::Unit::TestCase scripts.each do |lib| define_method "test_thread_size:#{lib}" do - assert_separately(['-W0'], "#{<<~"begin;"}\n#{<<~"end;"}") + assert_separately(['-W0'], "#{<<~"begin;"}\n#{<<~"end;"}", timeout: 60) begin; n = Thread.list.size require #{lib.dump} |