From 563c8efdee39233f80f4dc7b20b38d417b26f055 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 24 Feb 2022 09:14:06 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- bin/rspec-stackprof | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/rspec-stackprof b/bin/rspec-stackprof index 018bfe7da4b..06f931240f5 100755 --- a/bin/rspec-stackprof +++ b/bin/rspec-stackprof @@ -2,13 +2,12 @@ require_relative '../config/bundler_setup' require 'stackprof' -$:.unshift 'spec' -require 'spec_helper' +require 'rspec' filename = ARGV[0].split('/').last interval = ENV.fetch('INTERVAL', 1000).to_i limit = ENV.fetch('LIMIT', 20) -raw = ENV.fetch('RAW', false) == 'true' +raw = ENV.fetch('RAW', false) == 'true' # Set this to true if you want to generate a flamegraph output_file = "tmp/#{filename}.dump" StackProf.run(mode: :wall, out: output_file, interval: interval, raw: raw) do -- cgit v1.2.1