diff options
author | Koichi Sasada <[email protected]> | 2020-03-23 11:32:20 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2020-03-23 11:32:20 +0900 |
commit | 21d8e6924844d592ff2d5a2e7309457eb92e66f6 (patch) | |
tree | bfc94cf630495c3bedbf89c08b70da3e7730a73b /bootstraptest/test_thread.rb | |
parent | 1d996fe72fc20fbc88f07b4b8d34b99aacc688f3 (diff) |
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.
Diffstat (limited to 'bootstraptest/test_thread.rb')
-rw-r--r-- | bootstraptest/test_thread.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb index f00e2f7efc..e7ddadf4a7 100644 --- a/bootstraptest/test_thread.rb +++ b/bootstraptest/test_thread.rb @@ -8,7 +8,8 @@ show_limit %q{ puts "Thread count: #{threads.count} (#{error})" break end while true -} +} if false # disable to pass CI + assert_equal %q{ok}, %q{ Thread.new{ }.join |