merge revision(s) 21d8e69248:

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.
This commit is contained in:
nagachika 2020-07-09 20:54:28 +09:00
parent 9720591043
commit 6c22070408
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -2,11 +2,11 @@
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
#define RUBY_PATCHLEVEL 88
#define RUBY_PATCHLEVEL 89
#define RUBY_RELEASE_YEAR 2020
#define RUBY_RELEASE_MONTH 7
#define RUBY_RELEASE_DAY 5
#define RUBY_RELEASE_DAY 9
#include "ruby/version.h"