summaryrefslogtreecommitdiff
path: root/bin/rspec-stackprof
blob: 810863ea4a0bda86a846f14745dec96525327eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env ruby

require 'bundler/setup'
require 'stackprof'
$:.unshift 'spec'
require 'rails_helper'

filename = ARGV[0].split('/').last
interval = ENV.fetch('INTERVAL', 1000).to_i
limit = ENV.fetch('LIMIT', 20)
output_file = "tmp/#{filename}.dump"

StackProf.run(mode: :wall, out: output_file, interval: interval) do
  RSpec::Core::Runner.run(ARGV, $stderr, $stdout)
end

system("bundle exec stackprof #{output_file} --text --limit #{limit}")