From 76b9d37b56b5e240047684fffc00d0b2f0e44ed2 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 13 Dec 2014 02:11:10 +0000 Subject: [PATCH] test_object.rb: no RSS check * test/ruby/test_object.rb (test_copied_ivar_memory_leak): ignore RSS to disable false failure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_object.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_object.rb b/test/ruby/test_object.rb index a1514ed853..d5b4a1b612 100644 --- a/test/ruby/test_object.rb +++ b/test/ruby/test_object.rb @@ -851,7 +851,7 @@ class TestObject < Test::Unit::TestCase def test_copied_ivar_memory_leak bug10191 = '[ruby-core:64700] [Bug #10191]' - assert_no_memory_leak([], <<-"end;", <<-"end;", bug10191, rss: true, timeout: 60, limit: 1.8) + assert_no_memory_leak([], <<-"end;", <<-"end;", bug10191, timeout: 60, limit: 1.8) def (a = Object.new).set; @v = nil; end num = 500_000 end;