From 5fdf643637360a7be0bb2b464f85ddeba891bea1 Mon Sep 17 00:00:00 2001 From: seki Date: Sun, 11 Dec 2005 13:17:55 +0000 Subject: (test_remote_array_and_hash): pseudo remote objects are protected against GC. [ruby-dev:27911] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rinda/test_rinda.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/rinda/test_rinda.rb b/test/rinda/test_rinda.rb index d663e0446d..28da3e89df 100644 --- a/test/rinda/test_rinda.rb +++ b/test/rinda/test_rinda.rb @@ -511,9 +511,13 @@ class TupleSpaceProxyTest < Test::Unit::TestCase end def test_remote_array_and_hash - @ts.write(DRbObject.new([1, 2, 3])) + ary = [1, 2, 3] + @ts.write(DRbObject.new(ary)) + GC.start assert_equal([1, 2, 3], @ts.take([1, 2, 3], 0)) - @ts.write(DRbObject.new({'head' => 1, 'tail' => 2})) + hash = {'head' => 1, 'tail' => 2} + @ts.write(DRbObject.new(hash)) + GC.start assert_equal({'head' => 1, 'tail' => 2}, @ts.take({'head' => 1, 'tail' => 2}, 0)) end -- cgit v1.2.3