mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
adjust and reduce sleep
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7580 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
67f4a393ba
commit
c09dc0f725
2 changed files with 5 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Dec 16 22:36:57 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||||
|
|
||||||
|
* test/drb/test_drb.rb: adjust and reduce sleep.
|
||||||
|
|
||||||
Thu Dec 16 18:37:08 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Thu Dec 16 18:37:08 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* ext/openssl/ossl.c (ossl_raise): refine message format.
|
* ext/openssl/ossl.c (ossl_raise): refine message format.
|
||||||
|
|
|
@ -193,7 +193,7 @@ end
|
||||||
|
|
||||||
class TestDRbReusePort < TestDRbAry
|
class TestDRbReusePort < TestDRbAry
|
||||||
def setup
|
def setup
|
||||||
sleep 1
|
sleep 1.2
|
||||||
@ext = DRbService.manager.service('ut_port.rb')
|
@ext = DRbService.manager.service('ut_port.rb')
|
||||||
@there = @ext.front
|
@there = @ext.front
|
||||||
end
|
end
|
||||||
|
@ -201,7 +201,6 @@ end
|
||||||
|
|
||||||
class TestDRbSafe1 < TestDRbAry
|
class TestDRbSafe1 < TestDRbAry
|
||||||
def setup
|
def setup
|
||||||
sleep 1
|
|
||||||
@ext = DRbService.manager.service('ut_safe1.rb')
|
@ext = DRbService.manager.service('ut_safe1.rb')
|
||||||
@there = @ext.front
|
@there = @ext.front
|
||||||
end
|
end
|
||||||
|
@ -210,7 +209,6 @@ end
|
||||||
class TestDRbEval < Test::Unit::TestCase
|
class TestDRbEval < Test::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
super
|
super
|
||||||
sleep 1
|
|
||||||
@ext = DRbService.manager.service('ut_eval.rb')
|
@ext = DRbService.manager.service('ut_eval.rb')
|
||||||
@there = @ext.front
|
@there = @ext.front
|
||||||
end
|
end
|
||||||
|
@ -242,7 +240,6 @@ end
|
||||||
|
|
||||||
class TestDRbLarge < Test::Unit::TestCase
|
class TestDRbLarge < Test::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
sleep 1
|
|
||||||
@ext = DRbService.manager.service('ut_large.rb')
|
@ext = DRbService.manager.service('ut_large.rb')
|
||||||
@there = @ext.front
|
@there = @ext.front
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue