* bootstraptest/test_thread.rb: just check for normal exit.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-09-11 12:06:34 +00:00
Родитель f20d759cd0
Коммит 2620a84070
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -188,18 +188,18 @@ assert_equal %q{11}, %q{
Thread.current[:a]
}.value + Thread.current[:a]
}
assert_equal %q{100}, %q{
assert_normal_exit %q{
begin
100.times do |i|
begin
Thread.start(Thread.current) {|u| u.raise }
th = Thread.start(Thread.current) {|u| u.raise }
raise
rescue
ensure
th.join
end
end
rescue
100
end
}, '[ruby-dev:31371]'