mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Run background threads while testing drb
Do not start background thread on load test/drb/drbtest.rb, and stop threads on each test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
eab51f71d6
commit
4757c7eead
4 changed files with 107 additions and 124 deletions
|
@ -16,20 +16,17 @@ class DRbUNIXService < DRbService
|
|||
add_service_command(nm)
|
||||
end
|
||||
|
||||
uri = ARGV.shift if $0 == __FILE__
|
||||
@server = DRb::DRbServer.new(uri || 'drbunix:', self.manager, {})
|
||||
def start
|
||||
@server = DRb::DRbServer.new('drbunix:', manager, {})
|
||||
end
|
||||
end
|
||||
|
||||
class TestDRbUNIXCore < Test::Unit::TestCase
|
||||
include DRbCore
|
||||
def setup
|
||||
@drb_service = DRbUNIXService.new
|
||||
super
|
||||
setup_service 'ut_drb_drbunix.rb'
|
||||
super
|
||||
end
|
||||
|
||||
def teardown
|
||||
super
|
||||
DRbService.finish
|
||||
end
|
||||
|
||||
def test_02_unknown
|
||||
|
@ -51,12 +48,9 @@ end
|
|||
class TestDRbUNIXAry < Test::Unit::TestCase
|
||||
include DRbAry
|
||||
def setup
|
||||
@drb_service = DRbUNIXService.new
|
||||
super
|
||||
setup_service 'ut_array_drbunix.rb'
|
||||
super
|
||||
end
|
||||
def teardown
|
||||
super
|
||||
DRbService.finish
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue