X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4e27d97b0161e56943a5828262a0fb873b826f22..5d00ecb0932f86e4d2aced3d9258b96522ef38bd:/services/api/test/helpers/time_block.rb diff --git a/services/api/test/helpers/time_block.rb b/services/api/test/helpers/time_block.rb index a3b03ff2ba..5c753731df 100644 --- a/services/api/test/helpers/time_block.rb +++ b/services/api/test/helpers/time_block.rb @@ -8,4 +8,16 @@ class ActiveSupport::TestCase $stderr.puts "#{t1 - t0}s #{label}" end end + + def vmpeak c + open("/proc/self/status").each_line do |line| + print "Begin #{c} #{line}" if (line =~ /^VmHWM:/) + end + n = yield + open("/proc/self/status").each_line do |line| + print "End #{c} #{line}" if (line =~ /^VmHWM:/) + end + n + end + end