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

* test/-ext-/string/test_modify_expand.rb: test for r34492.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-02-08 13:35:27 +00:00
parent 83c7d9df2b
commit fc018c9b34
2 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,29 @@
require 'test/unit'
require "-test-/string/string"
require_relative '../../ruby/envutil'
class Test_StringModifyExpand < Test::Unit::TestCase
def test_modify_expand_memory_leak
before = after = nil
args = [
"--disable=gems", "-r-test-/string/string",
"-I"+File.expand_path("../../..", __FILE__),
"-rruby/memory_status",
"-e", <<-CMD
s=Bug::String.new
size=Memory::Status.new.size
puts size
10.times{s.modify_expand!(size)}
s.replace("")
puts Memory::Status.new.size
CMD
]
status = EnvUtil.invoke_ruby(args, "", true) do |in_p, out_p, err_p, pid|
before, after = out_p.readlines.map(&:to_i)
Process.wait(pid)
$?
end
assert_equal(true, status.success?)
assert_operator after.fdiv(before), :<, 2
end
end

View file

@ -0,0 +1,92 @@
module Memory
keys = []
vals = []
case
when File.exist?(procfile = "/proc/self/status")
PROC_FILE = procfile
VM_PAT = /^Vm(\w+):\s+(\d+)/
def self.read_status
IO.foreach(PROC_FILE) do |l|
yield($1.downcase.intern, $2.to_i * 1024) if VM_PAT =~ l
end
end
read_status {|k, v| keys << k; vals << v}
when /mswin|mingw/ =~ RUBY_PLATFORM
require 'dl/import'
require 'dl/types'
module Win32
extend DL::Importer
dlload "kernel32.dll", "psapi.dll"
include DL::Win32Types
typealias "SIZE_T", "DWORD"
PROCESS_MEMORY_COUNTERS = struct [
"DWORD cb",
"DWORD PageFaultCount",
"SIZE_T PeakWorkingSetSize",
"SIZE_T WorkingSetSize",
"SIZE_T QuotaPeakPagedPoolUsage",
"SIZE_T QuotaPagedPoolUsage",
"SIZE_T QuotaPeakNonPagedPoolUsage",
"SIZE_T QuotaNonPagedPoolUsage",
"SIZE_T PagefileUsage",
"SIZE_T PeakPagefileUsage",
]
typealias "PPROCESS_MEMORY_COUNTERS", "PROCESS_MEMORY_COUNTERS*"
extern "HANDLE GetCurrentProcess()", :stdcall
extern "BOOL GetProcessMemoryInfo(HANDLE, PPROCESS_MEMORY_COUNTERS, DWORD)", :stdcall
module_function
def memory_info
size = PROCESS_MEMORY_COUNTERS.size
data = PROCESS_MEMORY_COUNTERS.malloc
data.cb = size
data if GetProcessMemoryInfo(GetCurrentProcess(), data, size)
end
end
keys << :peak << :size
def self.read_status
if info = Win32.memory_info
yield :peak, info.PeakPagefileUsage
yield :size, info.PagefileUsage
end
end
else
PSCMD = ["ps", "-o", "vsz=,rss=", "-p"]
PAT = /^\s*(\d+)\s+(\d+)$/
keys << :size << :rss
def self.read_status
if PAT =~ IO.popen(PSCMD + [$$.to_s], "r", err: [:child, :out], &:read)
yield :size, $1.to_i*1024
yield :rss, $2.to_i*1024
end
end
end
Status = Struct.new(*keys)
class Status
def _update
Memory.read_status do |key, val|
self[key] = val
end
end
end
class Status
Header = members.map {|k| k.to_s.upcase.rjust(6)}.join('')
Format = "%6d"
def initialize
_update
end
end
end