From c6d0ca680804d6c058b73ad6e95b2c5526c23ad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Thu, 1 Feb 2018 12:29:13 +0100 Subject: Add debug in scripts/gitaly-test-spawn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- scripts/gitaly-test-spawn | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/scripts/gitaly-test-spawn b/scripts/gitaly-test-spawn index ecb68c6acc6..54313c7fe87 100755 --- a/scripts/gitaly-test-spawn +++ b/scripts/gitaly-test-spawn @@ -1,9 +1,33 @@ #!/usr/bin/env ruby gitaly_dir = 'tmp/tests/gitaly' -env = { 'HOME' => File.expand_path('tmp/tests'), - 'GEM_PATH' => Gem.path.join(':') } + +puts "Gem.path: #{Gem.path.inspect}" +puts "ENV['BUNDLE_GEMFILE']: #{ENV['BUNDLE_GEMFILE'].inspect}" +puts "ENV['RUBYOPT']: #{ENV['RUBYOPT'].inspect}" + +puts "bundle config in #{Dir.pwd}" +puts `bundle config` + +puts "Reading ../.bundle/config" +puts File.read('../.bundle/config') rescue nil +puts "Reading ~/.bundle/config" +puts File.read(File.expand_path('~/.bundle/config')) rescue nil + +Dir.chdir(File.join(gitaly_dir, 'ruby')) do + puts "Reading #{File.join(gitaly_dir, 'ruby')}/.bundle/config" + puts File.read('.bundle/config') rescue nil + puts "bundle config in #{File.join(gitaly_dir, 'ruby')}" + puts `bundle config` +end + +env = { + 'HOME' => File.expand_path('tmp/tests') +} args = %W[#{gitaly_dir}/gitaly #{gitaly_dir}/config.toml] +require 'rubygems' +require 'bundler' + # Print the PID of the spawned process -puts spawn(env, *args, [:out, :err] => 'log/gitaly-test.log') +puts Bundler.with_clean_env { spawn(env, *args, [:out, :err] => 'log/gitaly-test.log') } -- cgit v1.2.1