summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-06 03:06:04 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-06 03:06:04 +0000
commit1ba0c2594b0f5e9c9527c0da1ba90a9aa06230dc (patch)
tree91aac359df21b11a9b8e2a50cc24322ecd3d53cd /test
parentad68184e5a4344a5527cc0be7f203e7a5644f66c (diff)
merge revision(s) 49180: [Backport #10794]
* test/ruby/test_symbol.rb (TestSymbol#test_symbol_fstr_leak): get rid of a false positive on mswin CI. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@49523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_symbol.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index e2f9bfb56c..596f2b09f6 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -234,7 +234,7 @@ class TestSymbol < Test::Unit::TestCase
def test_symbol_fstr_leak
bug10686 = '[ruby-core:67268] [Bug #10686]'
x = 0
- assert_no_memory_leak([], '', <<-"end;", bug10686)
+ assert_no_memory_leak([], '', <<-"end;", bug10686, limit: 1.65)
200_000.times { |i| i.to_s.to_sym }
end;
end