1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 53520: [Backport #12776]

test_thread.rb: wait for the thread to sleep

	* test/ruby/test_thread.rb (test_thread_name): wait for the status
  of the subject thread to fix, so that the status does not change
  between two inspect methods.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@56440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2016-10-17 17:56:49 +00:00
parent 10555f93fb
commit 69f86f79e2
2 changed files with 2 additions and 1 deletions

View file

@ -1052,6 +1052,7 @@ q.pop
def test_thread_name
t = Thread.start {sleep}
sleep 0.001 until t.stop?
assert_nil t.name
s = t.inspect
t.name = 'foo'

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.2"
#define RUBY_RELEASE_DATE "2016-10-18"
#define RUBY_PATCHLEVEL 198
#define RUBY_PATCHLEVEL 199
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 10