diff options
| author | Max Bernstein <rubybugs@bernsteinbear.com> | 2025-08-18 09:21:42 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-18 12:21:42 -0400 |
| commit | 0df9a460451ed614f28660e69410edcb328d85be (patch) | |
| tree | f0f8a09195009b9cd75797ffebd1ab8dcdfb4080 | |
| parent | f38ba24bda8d3a80c636fba2ad99a2d5a3254bc6 (diff) | |
Increase timeout on slow tests (#14264)
| -rw-r--r-- | test/ruby/test_gc.rb | 2 | ||||
| -rw-r--r-- | test/ruby/test_keyword.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 5fc9ea508c..7aba333e92 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -447,7 +447,7 @@ class TestGc < Test::Unit::TestCase end def test_singleton_method_added - assert_in_out_err([], <<-EOS, [], [], "[ruby-dev:44436]") + assert_in_out_err([], <<-EOS, [], [], "[ruby-dev:44436]", timeout: 30) class BasicObject undef singleton_method_added def singleton_method_added(mid) diff --git a/test/ruby/test_keyword.rb b/test/ruby/test_keyword.rb index 4563308fa2..1e3e0e53b1 100644 --- a/test/ruby/test_keyword.rb +++ b/test/ruby/test_keyword.rb @@ -4033,7 +4033,7 @@ class TestKeywordArguments < Test::Unit::TestCase tap { m } GC.start tap { m } - }, bug8964 + }, bug8964, timeout: 30 assert_normal_exit %q{ prc = Proc.new {|a: []|} GC.stress = true |
