summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2020-07-09 20:54:28 +0900
committernagachika <nagachika@ruby-lang.org>2020-07-09 20:54:28 +0900
commit6c22070408f9729621712190bfc8460e5eebcb03 (patch)
treeff614048448fd2a0327404678aae82f6577532e9 /bootstraptest
parent9720591043003a5262c8f3e1c1720771bc77488b (diff)
merge revision(s) 21d8e6924844d592ff2d5a2e7309457eb92e66f6:
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')
-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