summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-24 12:04:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-24 12:04:47 +0000
commit97b8e4996f2aa92fe687415bebd700954af6eab5 (patch)
tree103ebad0dd5a971a1463b668daf9ed9c70527622 /test
parentb9c0b5039c77095b36e35dc3227458b09631dd78 (diff)
* error.c (rb_invalid_str): prevent intermediate variable from GC.
[ruby-core:34820] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30641 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_float.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb
index 7ab4ffc649..85faf63355 100644
--- a/test/ruby/test_float.rb
+++ b/test/ruby/test_float.rb
@@ -472,6 +472,11 @@ class TestFloat < Test::Unit::TestCase
assert(Float(o).nan?)
end
+ def test_invalid_str
+ bug4310 = '[ruby-core:34820]'
+ assert_raise(ArgumentError, bug4310) {under_gc_stress {Float('a'*10000)}}
+ end
+
def test_num2dbl
assert_raise(TypeError) do
1.0.step(2.0, "0.5") {}