mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/lib/minitest/unit.rb: Less ObjectSpace.each_object(Tempfile)
invocation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
70c15b19fa
commit
540ffb3abd
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun May 25 17:09:13 2014 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* test/lib/minitest/unit.rb: Less ObjectSpace.each_object(Tempfile)
|
||||
invocation.
|
||||
|
||||
Sun May 25 16:54:06 2014 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* test/lib/minitest/unit.rb: Use Thread.list instead of
|
||||
|
|
|
@ -923,12 +923,12 @@ module MiniTest
|
|||
filter === m || filter === "#{suite}##{m}"
|
||||
}
|
||||
|
||||
live1 = live_thread_and_tempfile
|
||||
|
||||
assertions = filtered_test_methods.map { |method|
|
||||
inst = suite.new method
|
||||
inst._assertions = 0
|
||||
|
||||
live1 = live_thread_and_tempfile
|
||||
|
||||
print "#{suite}##{method} = " if @verbose
|
||||
|
||||
start_time = Time.now if @verbose
|
||||
|
@ -938,7 +938,9 @@ module MiniTest
|
|||
print result
|
||||
puts if @verbose
|
||||
|
||||
check_tempfile_and_thread inst, live1
|
||||
live2 = live_thread_and_tempfile
|
||||
check_tempfile_and_thread inst, live1, live2
|
||||
live1 = live2
|
||||
|
||||
inst._assertions
|
||||
}
|
||||
|
@ -960,8 +962,7 @@ module MiniTest
|
|||
[live_threads, live_tempfiles]
|
||||
end
|
||||
|
||||
def check_tempfile_and_thread(inst, live1)
|
||||
live2 = live_thread_and_tempfile
|
||||
def check_tempfile_and_thread(inst, live1, live2)
|
||||
thread_finished = live1[0] - live2[0]
|
||||
if !thread_finished.empty?
|
||||
list = thread_finished.map {|t| ' ' + t.inspect }.sort.join
|
||||
|
|
Loading…
Reference in a new issue