aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--test/ruby/test_symbol.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d7bfb18f6b..d97fb65a74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index 596f2b09f6..bfdfe5245b 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, limit: 1.65)
+ assert_no_memory_leak([], '', <<-"end;", bug10686, limit: 1.71)
200_000.times { |i| i.to_s.to_sym }
end;
end