summaryrefslogtreecommitdiff
path: root/benchmark/gc/gcbench.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-20 09:00:41 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-20 09:00:41 +0000
commit07b6816583451e41d9e6a97fe97ef366b0539828 (patch)
tree3a440b5e8ab418152819b01db76165c30ed7ace7 /benchmark/gc/gcbench.rb
parent1db64a2035fc8779ac206958f01d71acc8017c28 (diff)
* benchmark/gc/gcbench.rb: stop GC::Profiler before output results.
Generating GC::Profiler result under profiling causes infinite loop. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/gc/gcbench.rb')
-rw-r--r--benchmark/gc/gcbench.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/benchmark/gc/gcbench.rb b/benchmark/gc/gcbench.rb
index dc1c5e2ded..aa92f0827d 100644
--- a/benchmark/gc/gcbench.rb
+++ b/benchmark/gc/gcbench.rb
@@ -12,6 +12,7 @@ GC::Profiler.enable
tms = Benchmark.measure{|x|
load script
}
+GC::Profiler.disable
GC::Profiler.report
pp GC.stat