summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Aruga <jaruga@redhat.com>2020-07-31 16:08:38 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-08-06 08:36:53 +0900
commitbbbec4b87c1e66909f5bee9acd3e460b8c1ad663 (patch)
tree4855c0ef20fb50c97c5f4fda040420820e969121
parent77cfd2e0a13f015bd47cbd111c2d42eaadebc731 (diff)
Apply timeout-scale to test_thr_kill.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3380
-rw-r--r--test/ruby/test_thread_queue.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_thread_queue.rb b/test/ruby/test_thread_queue.rb
index 13c839ab50..b0fa878814 100644
--- a/test/ruby/test_thread_queue.rb
+++ b/test/ruby/test_thread_queue.rb
@@ -131,7 +131,7 @@ class TestThreadQueue < Test::Unit::TestCase
def test_thr_kill
bug5343 = '[ruby-core:39634]'
Dir.mktmpdir {|d|
- timeout = 60
+ timeout = EnvUtil.apply_timeout_scale(60)
total_count = 250
begin
assert_normal_exit(<<-"_eom", bug5343, **{:timeout => timeout, :chdir=>d})