1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/spec/mem/blunt_spec.rb

33 lines
764 B
Ruby
Raw Normal View History

2012-05-01 14:53:01 -04:00
require 'spec_helper'
describe "A Very blunt test to make sure that we aren't doing stupid leaks" do
before do
#allocate a single context to make sure that v8 loads its snapshot and
#we pay the overhead.
V8::Context.new
2012-05-01 14:53:01 -04:00
@start_memory = process_memory
GC.stress = true
end
2012-05-01 14:53:01 -04:00
after do
GC.stress = false
end
it "won't increase process memory by more than 20% no matter how many contexts we create" do
5000.times do
V8::Context.new
gc_completely
2012-05-01 14:53:01 -04:00
end
process_memory.should <= @start_memory * 1.2
2012-05-01 14:53:01 -04:00
end
def process_memory
/\w*[ ]*#{Process.pid}[ ]*([.,\d]*)[ ]*([.,\d]*)[ ]*([\d]*)[ ]*([\d]*)/.match(`ps aux`)[4].to_i
end
def gc_completely
loop while !V8::C::V8::IdleNotification()
2012-05-01 14:53:01 -04:00
end
end