Commit 8de4617a authored by Mark Chao's avatar Mark Chao

Merge branch 'rz-fix-bin/rspec-stackprof' into 'master'

Require 'rspec' to fix bin/rspec-stackprof

See merge request gitlab-org/gitlab!81277
parents a1b120e4 cf0b2dc7
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment