1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_symbol.rb: avoid a false positive in AIX

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
odaira 2015-03-02 22:53:02 +00:00
parent ae048b1b7c
commit 120518576e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Mar 3 07:52:20 2015 Rei Odaira <Rei.Odaira@gmail.com>
* test/ruby/test_symbol.rb: avoid a false positive in AIX.
Tue Mar 3 00:59:39 2015 Naohisa Goto <ngotogenome@gmail.com>
* configure.in: set PRELOADENV in Solaris to avoid "wrong ELF class"

View file

@ -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, limit: 1.65)
assert_no_memory_leak([], '', <<-"end;", bug10686, limit: 1.71)
200_000.times { |i| i.to_s.to_sym }
end;
end