summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2020-03-23 11:32:20 +0900
committerKoichi Sasada <ko1@atdot.net>2020-03-23 11:32:20 +0900
commit21d8e6924844d592ff2d5a2e7309457eb92e66f6 (patch)
treebfc94cf630495c3bedbf89c08b70da3e7730a73b
parent1d996fe72fc20fbc88f07b4b8d34b99aacc688f3 (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.
-rw-r--r--bootstraptest/test_thread.rb3
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