summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-12-11 13:17:55 +0000
committerseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-12-11 13:17:55 +0000
commit378ccacb4d632c8b2749460392ae5322b7ee15bc (patch)
tree353410d46cf9c4deb04ae060641ed3ca2be88599
parent86ac83d485040b8d115817fa3b7562d27727ed00 (diff)
downloadruby-378ccacb4d632c8b2749460392ae5322b7ee15bc.tar.gz
ruby-378ccacb4d632c8b2749460392ae5322b7ee15bc.tar.xz
ruby-378ccacb4d632c8b2749460392ae5322b7ee15bc.zip
(test_remote_array_and_hash): pseudo remote objects are protected
against GC. [ruby-dev:27911] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/rinda/test_rinda.rb8
2 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8c0ae9dac..b050081f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Dec 11 22:07:58 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
+
+ * test/rinda/test_rinda.rb (test_remote_array_and_hash): pseudo remote
+ objects are protected against GC. [ruby-dev:27911]
+
Sat Dec 10 01:06:06 2005 Keiju Ishitsuka <keiju@ruby-lang.org>
* lib/matrix.rb: add Matrix#determinant_e, Matrix#rank_e.
diff --git a/test/rinda/test_rinda.rb b/test/rinda/test_rinda.rb
index d663e0446..28da3e89d 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