mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
48bfcdb4a0
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
22 lines
369 B
Ruby
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 }
|