Show leaked threads line-by-line.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-05-25 16:16:38 +00:00
Родитель fc85af7bc4
Коммит c8660d8966
2 изменённых файлов: 8 добавлений и 5 удалений

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

@ -1,6 +1,7 @@
Mon May 26 01:02:09 2014 Tanaka Akira <akr@fsij.org>
Mon May 26 01:07:51 2014 Tanaka Akira <akr@fsij.org>
* test/lib/minitest/unit.rb: Show leaked tempfiles line-by-line.
* test/lib/minitest/unit.rb: Show leaked threads and tempfiles
line-by-line.
Sun May 25 23:02:06 2014 Tanaka Akira <akr@fsij.org>

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

@ -974,8 +974,10 @@ module MiniTest
end
thread_retained = live2 - live1
if !thread_retained.empty?
list = thread_retained.map {|t| ' ' + t.inspect }.sort.join
puts "Leaked threads: #{inst.class}\##{inst.__name__}:#{list}"
list = thread_retained.map {|t| t.inspect }.sort
list.each {|str|
puts "Leaked thread: #{inst.class}\##{inst.__name__}: #{str}"
}
end
live2
end
@ -998,7 +1000,7 @@ module MiniTest
end
tempfile_retained = live2 - live1
if !tempfile_retained.empty?
list = tempfile_retained.map {|t| ' ' + t.inspect }.sort
list = tempfile_retained.map {|t| t.inspect }.sort
list.each {|str|
puts "Leaked tempfile: #{name}: #{str}"
}