ruby-changes:60482
From: Koichi <ko1@a...>
Date: Mon, 23 Mar 2020 11:41:46 +0900 (JST)
Subject: [ruby-changes:60482] 21d8e69248 (master): disable to show the maximum number of threads.
https://git.ruby-lang.org/ruby.git/commit/?id=21d8e69248 From 21d8e6924844d592ff2d5a2e7309457eb92e66f6 Mon Sep 17 00:00:00 2001 From: Koichi Sasada <ko1@a...> Date: Mon, 23 Mar 2020 11:32:20 +0900 Subject: disable to show the maximum number of threads. On Deiban 9 environment, the thread tests failed and this maximum threads information can finish up the machine resources. To check it, I turned-off showing this information. diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb index f00e2f7..e7ddadf 100644 --- a/bootstraptest/test_thread.rb +++ b/bootstraptest/test_thread.rb @@ -8,7 +8,8 @@ show_limit %q{ https://github.com/ruby/ruby/blob/trunk/bootstraptest/test_thread.rb#L8 puts "Thread count: #{threads.count} (#{error})" break end while true -} +} if false # disable to pass CI + assert_equal %q{ok}, %q{ Thread.new{ }.join -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/