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

test/ruby: fix leaked threads

* test/thread/test_{backtrace,beginendblock,proc,threadgroup}.rb:
  join work threads not to leak threads.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-05-26 05:13:40 +00:00
parent 501afa0134
commit 72dce44d7b
4 changed files with 12 additions and 4 deletions

View file

@ -212,6 +212,7 @@ class TestBacktrace < Test::Unit::TestCase
assert_equal(bt, locs)
ensure
q << true
th.join
end
end