summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/weakref/fixtures/classes.rb
blob: 560c58b041ae192ace1aad5f82af271ee18cc363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'weakref'

# From MRI test_weakref.rb
class WeakRefSpec
  def self.make_weakref(level = 10)
    if level > 0
      make_weakref(level - 1)
    else
      WeakRef.new(Object.new)
    end
  end

  def self.make_dead_weakref
    weaks = []
    weak = nil
    10_000.times do
      weaks << make_weakref
      GC.start
      GC.start
      break if weak = weaks.find { |w| !w.weakref_alive? }
    end
    weak
  end
end