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

* gc.c (gc_profile_total_time): fix off-by-one error in GC::Profiler.total_time.

* test/ruby/test_gc.rb (class TestGc): test for above.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tmm1 2013-10-29 02:11:26 +00:00
parent fb3bd5a18a
commit 29dbed183e
3 changed files with 17 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Tue Oct 29 11:10:08 2013 Aman Gupta <ruby@tmm1.net>
* gc.c (gc_profile_total_time): fix off-by-one error in
GC::Profiler.total_time.
* test/ruby/test_gc.rb (class TestGc): test for above.
Tue Oct 29 09:53:00 2013 Charlie Somerville <charliesome@ruby-lang.org>
* insns.def, vm.c, vm_insnhelper.c, vm_insnhelper.h, vm_method.c: split

2
gc.c
View file

@ -6140,7 +6140,7 @@ gc_profile_total_time(VALUE self)
if (objspace->profile.run && objspace->profile.next_index > 0) {
size_t i;
size_t count = objspace->profile.next_index - 1;
size_t count = objspace->profile.next_index;
for (i = 0; i < count; i++) {
time += objspace->profile.records[i].gc_time;

View file

@ -166,6 +166,16 @@ class TestGc < Test::Unit::TestCase
eom
end
def test_profiler_total_time
GC::Profiler.enable
GC::Profiler.clear
GC.start
assert_operator(GC::Profiler.total_time, :>, 0)
ensure
GC::Profiler.disable
end
def test_finalizing_main_thread
assert_in_out_err(%w[--disable-gems], <<-EOS, ["\"finalize\""], [], "[ruby-dev:46647]")
ObjectSpace.define_finalizer(Thread.main) { p 'finalize' }