Skip to content

Commit 6c22070

Browse files
committed
merge revision(s) 21d8e69:
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.
1 parent 9720591 commit 6c22070

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

bootstraptest/test_thread.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
puts "Thread count: #{threads.count} (#{error})"
99
break
1010
end while true
11-
}
11+
} if false # disable to pass CI
12+
1213
assert_equal %q{ok}, %q{
1314
Thread.new{
1415
}.join

version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
33
#define RUBY_VERSION_TEENY 1
44
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
5-
#define RUBY_PATCHLEVEL 88
5+
#define RUBY_PATCHLEVEL 89
66

77
#define RUBY_RELEASE_YEAR 2020
88
#define RUBY_RELEASE_MONTH 7
9-
#define RUBY_RELEASE_DAY 5
9+
#define RUBY_RELEASE_DAY 9
1010

1111
#include "ruby/version.h"
1212

0 commit comments

Comments
 (0)