summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-08 06:31:30 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-08 06:31:30 +0000
commita8565ad2201d094efc4b92c4c4b77ea77b7e10d0 (patch)
treef8dc772c2e1ffdead8898b5a30a6a7ecbb7ba336 /test/ruby
parent934253416eb9eb5436c247014c05329346d16b5f (diff)
* 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/trunk@49180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-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