From 434fc4c8a0db806ec0ea2586d12610081e067fd1 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 12 Feb 2016 04:24:10 +0000 Subject: 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 --- test/drb/drbtest.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'test/drb') diff --git a/test/drb/drbtest.rb b/test/drb/drbtest.rb index 4488e1be21..40ef35ef2e 100644 --- a/test/drb/drbtest.rb +++ b/test/drb/drbtest.rb @@ -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| -- cgit v1.2.3