diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-09-02 10:34:38 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-09-02 10:34:49 -0700 |
| commit | b1b4984fb94fc3d3c17237f8a6a3f8fe90996846 (patch) | |
| tree | 27e1c23ae4e58e312be6da43afd5d8358a530738 | |
| parent | 9158b19b6bf2175e5e99f063ee5f2ecb33f70673 (diff) | |
test_thread_cv.rb: Increase a timeout for a thread test
https://github.com/ruby/ruby/actions/runs/17410747983/job/49427074277
| -rw-r--r-- | test/ruby/test_thread_cv.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_thread_cv.rb b/test/ruby/test_thread_cv.rb index eb88b9606c..81201f134f 100644 --- a/test/ruby/test_thread_cv.rb +++ b/test/ruby/test_thread_cv.rb @@ -76,7 +76,7 @@ class TestThreadConditionVariable < Test::Unit::TestCase condvar.broadcast result << "P2" end - Timeout.timeout(5) do + Timeout.timeout(60) do nr_threads.times do |i| threads[i].join end |
