mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
drbtest.rb: make command an array
* test/drb/drbtest.rb (DRbService): make @@ruby an array to be consistent with r35424. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6bbe44a39a
commit
434fc4c8a0
1 changed files with 3 additions and 4 deletions
|
@ -3,17 +3,16 @@ require 'test/unit'
|
||||||
require 'drb/drb'
|
require 'drb/drb'
|
||||||
require 'drb/extservm'
|
require 'drb/extservm'
|
||||||
require 'timeout'
|
require 'timeout'
|
||||||
require 'shellwords'
|
|
||||||
|
|
||||||
module DRbTests
|
module DRbTests
|
||||||
|
|
||||||
class DRbService
|
class DRbService
|
||||||
@@manager = DRb::ExtServManager.new
|
@@manager = DRb::ExtServManager.new
|
||||||
@@ruby = Shellwords.escape(EnvUtil.rubybin)
|
@@ruby = [EnvUtil.rubybin]
|
||||||
@@ruby += " -d" if $DEBUG
|
@@ruby << "-d" if $DEBUG
|
||||||
def self.add_service_command(nm)
|
def self.add_service_command(nm)
|
||||||
dir = File.dirname(File.expand_path(__FILE__))
|
dir = File.dirname(File.expand_path(__FILE__))
|
||||||
DRb::ExtServManager.command[nm] = [@@ruby, "#{dir}/#{nm}"]
|
DRb::ExtServManager.command[nm] = @@ruby + ["#{dir}/#{nm}"]
|
||||||
end
|
end
|
||||||
|
|
||||||
%w(ut_drb.rb ut_array.rb ut_port.rb ut_large.rb ut_safe1.rb ut_eval.rb ut_eq.rb).each do |nm|
|
%w(ut_drb.rb ut_array.rb ut_port.rb ut_large.rb ut_safe1.rb ut_eval.rb ut_eq.rb).each do |nm|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue