ruby-changes:37935
From: ko1 <ko1@a...>
Date: Thu, 19 Mar 2015 06:30:45 +0900 (JST)
Subject: [ruby-changes:37935] ko1:r50016 (trunk): * test/objspace/test_objspace.rb: flag name was changed
ko1 2015-03-19 06:30:23 +0900 (Thu, 19 Mar 2015) New Revision: 50016 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50016 Log: * test/objspace/test_objspace.rb: flag name was changed (long_lived -> uncollectible). Modified files: trunk/ChangeLog trunk/test/objspace/test_objspace.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 50015) +++ ChangeLog (revision 50016) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Mar 19 06:29:28 2015 Koichi Sasada <ko1@a...> + + * test/objspace/test_objspace.rb: flag name was changed + (long_lived -> uncollectible). + Thu Mar 19 05:30:13 2015 Koichi Sasada <ko1@a...> * iseq.c (iseq_mark): skip some marking if iseq->orig is available. Index: test/objspace/test_objspace.rb =================================================================== --- test/objspace/test_objspace.rb (revision 50015) +++ test/objspace/test_objspace.rb (revision 50016) @@ -196,7 +196,7 @@ class TestObjSpace < Test::Unit::TestCas https://github.com/ruby/ruby/blob/trunk/test/objspace/test_objspace.rb#L196 def test_dump_flags info = ObjectSpace.dump("foo".freeze) - assert_match /"wb_protected":true, "old":true, "long_lived":true, "marked":true/, info + assert_match /"wb_protected":true, "old":true, "uncollectible":true, "marked":true/, info assert_match /"fstring":true/, info end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/