* tool/rdocbench.rb: add gc total time infomation.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41123 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tarui 2013-06-07 02:18:05 +00:00
Родитель f1a8f228c8
Коммит b1bbe884cd
2 изменённых файлов: 5 добавлений и 0 удалений

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

@ -1,3 +1,7 @@
Fri Jun 7 11:16:28 2013 Masaya Tarui <tarui@ruby-lang.org>
* tool/rdocbench.rb: add gc total time infomation.
Fri Jun 7 10:12:01 2013 Koichi Sasada <ko1@atdot.net>
* gc.c: remove "Sunny" terminology.

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

@ -16,6 +16,7 @@ Dir.mktmpdir('rdocbench-'){|d|
r.document args
GC::Profiler.report
pp GC.stat
puts "GC Total Time:#{GC::Profiler.total_time}"
}
}
}