mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bootstraptest/test_thread.rb: get rid of "invalid nest" error in
ruby-mode.el. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5c7027d227
commit
4136f8ce89
1 changed files with 10 additions and 10 deletions
|
@ -189,18 +189,18 @@ assert_equal %q{11}, %q{
|
|||
}.value + Thread.current[:a]
|
||||
}
|
||||
assert_normal_exit %q{
|
||||
begin
|
||||
100.times do |i|
|
||||
begin
|
||||
th = Thread.start(Thread.current) {|u| u.raise }
|
||||
raise
|
||||
rescue
|
||||
ensure
|
||||
th.join
|
||||
begin
|
||||
100.times do |i|
|
||||
begin
|
||||
th = Thread.start(Thread.current) {|u| u.raise }
|
||||
raise
|
||||
rescue
|
||||
ensure
|
||||
th.join
|
||||
end
|
||||
end
|
||||
rescue
|
||||
end
|
||||
rescue
|
||||
end
|
||||
}, '[ruby-dev:31371]'
|
||||
|
||||
assert_equal 'true', %{
|
||||
|
|
Loading…
Reference in a new issue