1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/ruby/bug-13526.rb
eregon 48bfcdb4a0 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
2017-11-21 00:56:09 +00:00

22 lines
369 B
Ruby

# From https://bugs.ruby-lang.org/issues/13526#note-1
Thread.report_on_exception = true
sleep if $load
$load = true
n = 10
threads = Array.new(n) do
Thread.new do
begin
autoload :Foo, File.expand_path(__FILE__)
Thread.pass
Foo
ensure
Thread.pass
end
end
end
Thread.pass until threads.all?(&:stop?)
1000.times { Thread.pass }