зеркало из https://github.com/github/ruby.git
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:
Родитель
6bbe44a39a
Коммит
434fc4c8a0
|
@ -3,17 +3,16 @@ require 'test/unit'
|
|||
require 'drb/drb'
|
||||
require 'drb/extservm'
|
||||
require 'timeout'
|
||||
require 'shellwords'
|
||||
|
||||
module DRbTests
|
||||
|
||||
class DRbService
|
||||
@@manager = DRb::ExtServManager.new
|
||||
@@ruby = Shellwords.escape(EnvUtil.rubybin)
|
||||
@@ruby += " -d" if $DEBUG
|
||||
@@ruby = [EnvUtil.rubybin]
|
||||
@@ruby << "-d" if $DEBUG
|
||||
def self.add_service_command(nm)
|
||||
dir = File.dirname(File.expand_path(__FILE__))
|
||||
DRb::ExtServManager.command[nm] = [@@ruby, "#{dir}/#{nm}"]
|
||||
DRb::ExtServManager.command[nm] = @@ruby + ["#{dir}/#{nm}"]
|
||||
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|
|
||||
|
|
Загрузка…
Ссылка в новой задаче