From dc5272565515df919e57ad8a9bcb58fdac4c553b Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 11 Mar 2014 05:16:04 +0000 Subject: envutil.rb: do not check RSS by default * test/ruby/envutil.rb (Test::Test#assert_no_memory_leak): do not check RSS by default, enabled by rss optional keyword argument. TestHash#test_exception_in_rehash sometimes fails otherwise. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45314 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/dl/test_cptr.rb | 2 +- test/dl/test_handle.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test/dl') diff --git a/test/dl/test_cptr.rb b/test/dl/test_cptr.rb index 13700cb3f2..a5b37dbb61 100644 --- a/test/dl/test_cptr.rb +++ b/test/dl/test_cptr.rb @@ -221,6 +221,6 @@ module DL end def test_no_memory_leak - assert_no_memory_leak(%w[-W0 -rdl.so], '', '100_000.times {DL::CPtr.allocate}', limit: 1.2) + assert_no_memory_leak(%w[-W0 -rdl.so], '', '100_000.times {DL::CPtr.allocate}', limit: 1.2, rss: true) end end diff --git a/test/dl/test_handle.rb b/test/dl/test_handle.rb index fc5053a87e..43fdd4a6d0 100644 --- a/test/dl/test_handle.rb +++ b/test/dl/test_handle.rb @@ -186,6 +186,6 @@ module DL end def test_no_memory_leak - assert_no_memory_leak(%w[-W0 -rdl.so], '', '100_000.times {DL::Handle.allocate}; GC.start', limit: 1.2) + assert_no_memory_leak(%w[-W0 -rdl.so], '', '100_000.times {DL::Handle.allocate}; GC.start', limit: 1.2, rss: true) end end -- cgit v1.2.3