mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 44555:
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/branches/ruby_2_1@44850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
eef4a3cd72
commit
1f478676c4
2 changed files with 11 additions and 6 deletions
|
@ -19,9 +19,14 @@ class TestWeakRef < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_recycled
|
||||
weak = make_weakref
|
||||
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
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#define RUBY_VERSION "2.1.1"
|
||||
#define RUBY_RELEASE_DATE "2014-02-05"
|
||||
#define RUBY_PATCHLEVEL 23
|
||||
#define RUBY_RELEASE_DATE "2014-02-06"
|
||||
#define RUBY_PATCHLEVEL 24
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2014
|
||||
#define RUBY_RELEASE_MONTH 2
|
||||
#define RUBY_RELEASE_DAY 5
|
||||
#define RUBY_RELEASE_DAY 6
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue