summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-08 02:07:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-08 02:07:43 +0000
commitcccc8cbd45078028a1bae2d28c934172723bebf3 (patch)
treef3edd29f375956499f506623e667cb03409fb340 /test
parent01a21e44fece658e46e12b29cea566052c67cb43 (diff)
* ext/bigdecimal/bigdecimal.c (VpAlloc): ensure buf does not get
collected. based on a patch masaya tarui at [ruby-dev:41213]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/bigdecimal/test_bigdecimal.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/bigdecimal/test_bigdecimal.rb b/test/bigdecimal/test_bigdecimal.rb
index 19beec1c74..78c50f6d27 100644
--- a/test/bigdecimal/test_bigdecimal.rb
+++ b/test/bigdecimal/test_bigdecimal.rb
@@ -687,4 +687,15 @@ class TestBigDecimal < Test::Unit::TestCase
assert_equal(BigDecimal::SIGN_POSITIVE_ZERO, BigDecimal.new("1E-1" + "0" * 10000).sign)
assert_equal(BigDecimal::SIGN_NEGATIVE_ZERO, BigDecimal.new("-1E-1" + "0" * 10000).sign)
end
+
+ def test_gc
+ bug3258 = '[ruby-dev:41213]'
+ stress, GC.stress = GC.stress, true
+ 1000.times do |i|
+ b = BigDecimal.new("1"+"0"*i).to_s
+ assert_equal([1, "1", 10, i+1], b.split, bug3258)
+ end
+ ensure
+ GC.stress = stress
+ end
end