1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/rinda/test_rinda.rb (MockClock#{_forward, forwrd, sleep}):

Change default value of n as @reso from nil.  If default value is
  nil, n.+ is not defined.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2007-12-25 05:08:04 +00:00
parent ba85206635
commit 34c6bca381
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
Tue Dec 25 14:03:48 2007 NARUSE, Yui <naruse@ruby-lang.org>
* test/rinda/test_rinda.rb (MockClock#{_forward, forwrd, sleep}):
Change default value of n as @reso from nil. If default value is
nil, n.+ is not defined.
Tue Dec 25 13:54:01 2007 Tanaka Akira <akr@fsij.org>
* test/ruby/test_io_m17n.rb (test_pipe): fixed.

View file

@ -33,14 +33,14 @@ class MockClock
n
end
def _forward(n=nil)
def _forward(n=@reso)
now ,= @ts.take([nil, :now])
@now = now + n
n = @reso if n.nil?
@ts.write([@now, :now])
end
def forward(n=nil)
def forward(n=@reso)
while n > 0
_forward(@reso)
n -= @reso
@ -55,7 +55,7 @@ class MockClock
@ts.write([2, :now])
end
def sleep(n=nil)
def sleep(n=@reso)
while will_deadlock?
n -= @reso
forward