mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Stop a global server of Rinda test
This server seemed to cause "leaked file descriptor" warnings. Moved it into the setup/teardown framework. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
871d497c01
commit
a4d6fb5584
1 changed files with 2 additions and 2 deletions
|
@ -465,6 +465,7 @@ class TupleSpaceProxyTest < Test::Unit::TestCase
|
|||
ThreadGroup.new.add(Thread.current)
|
||||
@ts_base = Rinda::TupleSpace.new(1)
|
||||
@ts = Rinda::TupleSpaceProxy.new(@ts_base)
|
||||
@server = DRb.start_service("druby://localhost:0")
|
||||
end
|
||||
def teardown
|
||||
# implementation-dependent
|
||||
|
@ -474,6 +475,7 @@ class TupleSpaceProxyTest < Test::Unit::TestCase
|
|||
th.join
|
||||
end
|
||||
}
|
||||
@server.stop_service
|
||||
end
|
||||
|
||||
def test_remote_array_and_hash
|
||||
|
@ -531,8 +533,6 @@ class TupleSpaceProxyTest < Test::Unit::TestCase
|
|||
Process.wait(write) if write && status.nil?
|
||||
Process.wait(take) if take
|
||||
end
|
||||
|
||||
@server = DRb.primary_server || DRb.start_service("druby://localhost:0")
|
||||
end
|
||||
|
||||
module RingIPv6
|
||||
|
|
Loading…
Reference in a new issue