diff options
author | Peter Zhu <[email protected]> | 2024-08-14 16:23:22 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-08-14 16:23:22 -0400 |
commit | fd974f5d740b9b5af63ecfdef3ee092b69e437a3 (patch) | |
tree | d3ec4a60c0b8f2c5e93c2be449bc36fd68b60a01 /test/ruby | |
parent | 09bf3c9d6a7e5c3b5c7193f3beaa169f048cf3a5 (diff) |
Increase timeout of test_finalizer
The test is timing out on lpi4a so a longer timeout should fix it.
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_objectspace.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_objectspace.rb b/test/ruby/test_objectspace.rb index d3ce6e6ed5..0364cf7093 100644 --- a/test/ruby/test_objectspace.rb +++ b/test/ruby/test_objectspace.rb @@ -102,7 +102,7 @@ End !b END - assert_in_out_err(["-e", <<~RUBY], "", %w(:ok :ok), []) + assert_in_out_err(["-e", <<~RUBY], "", %w(:ok :ok), [], timeout: 60) a = Object.new ObjectSpace.define_finalizer(a) { p :ok } |