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

leakchecker.rb: MiniTest::Unit.output

* test/lib/leakchecker.rb (LeakChecker#puts): send output to
  MiniTest::Unit.output, not to be mixed with parallel test
  commands.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46654 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-07-02 07:59:20 +00:00
parent 41fe524857
commit 02ddcb4b66

View file

@ -157,4 +157,8 @@ class LeakChecker
@thread_info = live2
return leaked
end
def puts(*a)
MiniTest::Unit.output.puts(*a)
end
end