debian-mirror-gitlab/heapy/weird_memory/string/string_in_proc.rb
2019-10-03 20:49:30 +05:30

26 lines
585 B
Ruby

$LOAD_PATH.unshift(File.expand_path(File.join(__FILE__, "../../../lib")))
require 'heapy'
Heapy::Alive.start_object_trace!(heap_file: ENV.fetch('HEAP_FILE') { 'tmp/heap.json' })
def run
-> {
string = ""
Heapy::Alive.trace_without_retain(string)
string
}.call
return nil
end
run
alive_count = Heapy::Alive.traced_objects.select {|tracer|
tracer.object_retained?
}.length
# should return 0, no traced objects are returned
expected = 0
actual = alive_count
result = expected == actual ? "PASS" : "FAIL"
puts "#{result}: expected: #{expected}, actual: #{actual}"