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

(test_main_thread_status_at_exit) wait until the thread enter the begin clause.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-09-21 04:55:49 +00:00
parent 34ac0ea7bf
commit c7b2577178

View file

@ -818,8 +818,10 @@ _eom
def test_main_thread_status_at_exit
assert_in_out_err([], <<-'INPUT', ["false false aborting"], [])
q = Queue.new
Thread.new(Thread.current) {|mth|
begin
q.push nil
mth.run
Thead.pass until mth.stop?
p :mth_stopped # don't run if killed by rb_thread_terminate_all
@ -827,6 +829,7 @@ Thread.new(Thread.current) {|mth|
puts "#{mth.alive?} #{mth.status} #{Thread.current.status}"
end
}
q.pop
INPUT
end