mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test_weakref.rb: find collected weakref
* test/test_weakref.rb (test_recycled): retry and find a WeakRef whose the target is collected, to fix circumstance dependent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44555 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e85e95c409
commit
b89a88f043
1 changed files with 8 additions and 3 deletions
|
@ -19,9 +19,14 @@ class TestWeakRef < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_recycled
|
||||
weak = make_weakref
|
||||
ObjectSpace.garbage_collect
|
||||
ObjectSpace.garbage_collect
|
||||
weaks = []
|
||||
weak = nil
|
||||
100.times do
|
||||
weaks << make_weakref
|
||||
ObjectSpace.garbage_collect
|
||||
ObjectSpace.garbage_collect
|
||||
break if weak = weaks.find {|w| !w.weakref_alive?}
|
||||
end
|
||||
assert_raise(WeakRef::RefError) {weak.to_s}
|
||||
assert_not_predicate(weak, :weakref_alive?)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue