summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-16 11:00:15 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-16 11:00:15 +0000
commit50c667a83779453b73f095970e8404d137246b58 (patch)
tree36f4f8264ab3a1bd89893a5d8da1b5c0bd254207 /test
parent3eafecb77ec774d42594b64609940428de260679 (diff)
merge revision(s) 24713:
* gc.c (gc_sweep): makes new room if object space is full of finalized objects and has no free objects. [ruby-dev:39201] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@25801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_gc.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb
index d0b4e3df77..ed854bde65 100644
--- a/test/ruby/test_gc.rb
+++ b/test/ruby/test_gc.rb
@@ -26,5 +26,9 @@ class TestGc < Test::Unit::TestCase
}
GC.start
assert true # reach here or dumps core
+ 100000.times {
+ Time.now
+ }
+ assert true, '[ruby-dev:39201]' # reach here or dumps core
end
end