ruby-changes:50623
From: nobu <ko1@a...>
Date: Fri, 16 Mar 2018 23:12:44 +0900 (JST)
Subject: [ruby-changes:50623] nobu:r62781 (trunk): test_weakmap.rb: skip unstable assertion
nobu 2018-03-16 23:12:39 +0900 (Fri, 16 Mar 2018) New Revision: 62781 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62781 Log: test_weakmap.rb: skip unstable assertion Modified files: trunk/test/ruby/test_weakmap.rb Index: test/ruby/test_weakmap.rb =================================================================== --- test/ruby/test_weakmap.rb (revision 62780) +++ test/ruby/test_weakmap.rb (revision 62781) @@ -37,7 +37,7 @@ class TestWeakMap < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_weakmap.rb#L37 @wm[k] = x assert_send([@wm, m, k]) assert_not_send([@wm, m, "FOO".downcase]) - x = nil + x = Object.new end end @@ -48,7 +48,7 @@ class TestWeakMap < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_weakmap.rb#L48 assert_weak_include(m, k) end GC.start - # skip('TODO: failure introduced from r60440') + skip('TODO: failure introduced from r60440') assert_not_send([@wm, m, k]) end alias test_member? test_include? -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/