From 69f86f79e25d7e0bd56f9967d2f3905a9cd4a26e Mon Sep 17 00:00:00 2001 From: nagachika Date: Mon, 17 Oct 2016 17:56:49 +0000 Subject: 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 --- test/ruby/test_thread.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb index c90c369bb7..6ad33b83d4 100644 --- a/test/ruby/test_thread.rb +++ b/test/ruby/test_thread.rb @@ -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' -- cgit v1.2.3