From b1bbe884cd5e6554017b5c6b610acf653db23a04 Mon Sep 17 00:00:00 2001 From: tarui Date: Fri, 7 Jun 2013 02:18:05 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ tool/rdocbench.rb | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 38ff597038..c43dcbb605 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 7 11:16:28 2013 Masaya Tarui + + * tool/rdocbench.rb: add gc total time infomation. + Fri Jun 7 10:12:01 2013 Koichi Sasada * gc.c: remove "Sunny" terminology. diff --git a/tool/rdocbench.rb b/tool/rdocbench.rb index db5e0bebf2..946d646431 100644 --- a/tool/rdocbench.rb +++ b/tool/rdocbench.rb @@ -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}" } } }