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

test/ruby/bug-13526.rb: should wait until all threads are stopped

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2017-11-21 00:56:09 +00:00
parent c0ffccf722
commit 48bfcdb4a0

View file

@ -18,5 +18,5 @@ threads = Array.new(n) do
end
end
Thread.pass while threads.all?(&:stop?)
Thread.pass until threads.all?(&:stop?)
1000.times { Thread.pass }