From dd8eb7f36e5677bfa165dd20f68cd7e6bb822e58 Mon Sep 17 00:00:00 2001 From: kares Date: Sun, 29 Aug 2021 12:13:20 +0200 Subject: [PATCH] remove debugging output --- lib/bootstrap/rspec.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/bootstrap/rspec.rb b/lib/bootstrap/rspec.rb index f5f343cb0c9..267a4f6c2bd 100755 --- a/lib/bootstrap/rspec.rb +++ b/lib/bootstrap/rspec.rb @@ -27,22 +27,12 @@ $LOAD_PATH.unshift(spec_path) unless $LOAD_PATH.include?(spec_path) end -puts "$LOAD_PATH: " -$LOAD_PATH.each { |p| puts "> #{p}" } - require "rspec/core" require "rspec" require 'ci/reporter/rake/rspec_loader' RSpec.clear_examples # if multiple rspec runs occur in a single process, the RSpec "world" state needs to be reset. -require 'jruby' -puts "Dir.pwd #{Dir.pwd}" -puts "JRuby.runtime.current_directory: #{JRuby.runtime.current_directory}" -puts "LogStash::Environment::LOGSTASH_HOME: #{LogStash::Environment::LOGSTASH_HOME}" -puts "ARGV: #{ARGV.inspect}" -puts "$JUNIT_ARGV: #{$JUNIT_ARGV.inspect}" - status = RSpec::Core::Runner.run(ARGV.empty? ? ($JUNIT_ARGV || ["spec"]) : ARGV).to_i if ENV["IS_JUNIT_RUN"] return status