aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-01 02:18:40 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-01 02:18:40 +0000
commit8717a9ec861ac129d3c93f8eb44e8c3ef07ed9af (patch)
tree5830f5b5010807faa613d1f66c6df5b2fbc999ef /test
parentabe15dddf73386971d22c0652ee1a48443aebb57 (diff)
downloadruby-8717a9ec861ac129d3c93f8eb44e8c3ef07ed9af.tar.gz
symbol.c: fix memory leak from global fstr hash
* symbol.c (rb_gc_free_dsymbol): delete from global fstr hash * test/ruby/test_symbol.rb (test_symbol_fstr_leak): test for bug [ruby-core:67268] [Bug #10686] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49090 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_symbol.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index a25e6fb5d2..e2f9bfb56c 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -230,4 +230,12 @@ class TestSymbol < Test::Unit::TestCase
end
assert_nothing_raised(NoMethodError, bug10259) {obj.send("unagi=".intern, 1)}
end
+
+ def test_symbol_fstr_leak
+ bug10686 = '[ruby-core:67268] [Bug #10686]'
+ x = 0
+ assert_no_memory_leak([], '', <<-"end;", bug10686)
+ 200_000.times { |i| i.to_s.to_sym }
+ end;
+ end
end