diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-07-15 12:09:26 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-07-15 12:09:26 +0000 |
commit | 9215d9f7619929f9da16744fa37636635b66949b (patch) | |
tree | 754fa5c3a99700176b117d96b30268cbd3c07581 /bin/rspec-stackprof | |
parent | a898b6057ecf9ab635c45217568d44eab5c32ec0 (diff) | |
download | gitlab-ce-9215d9f7619929f9da16744fa37636635b66949b.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'bin/rspec-stackprof')
-rwxr-xr-x | bin/rspec-stackprof | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/rspec-stackprof b/bin/rspec-stackprof index 8058d165196..3bef45c607c 100755 --- a/bin/rspec-stackprof +++ b/bin/rspec-stackprof @@ -8,9 +8,10 @@ require 'spec_helper' filename = ARGV[0].split('/').last interval = ENV.fetch('INTERVAL', 1000).to_i limit = ENV.fetch('LIMIT', 20) +raw = ENV.fetch('RAW', false) == 'true' output_file = "tmp/#{filename}.dump" -StackProf.run(mode: :wall, out: output_file, interval: interval) do +StackProf.run(mode: :wall, out: output_file, interval: interval, raw: raw) do RSpec::Core::Runner.run(ARGV, $stderr, $stdout) end |