mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8137152e01
Rake::Backtrace::SUPPRESSED_PATHS * test/rake/test_rake_backtrace.rb: Skip tests when tmpdir is in the suppressed pattern. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
622 B
Ruby
18 lines
622 B
Ruby
module Rake
|
|
module Backtrace
|
|
SUPPRESSED_PATHS =
|
|
RbConfig::CONFIG.values_at(*RbConfig::CONFIG.
|
|
keys.grep(/(prefix|libdir)/)).uniq + [
|
|
File.join(File.dirname(__FILE__), ".."),
|
|
].map { |f| Regexp.quote(File.expand_path(f)) }
|
|
SUPPRESSED_PATHS.reject! { |s| s.nil? || s =~ /^ *$/ }
|
|
|
|
SUPPRESS_PATTERN = %r!(\A#{SUPPRESSED_PATHS.join('|')}|bin/rake:\d+)!i
|
|
|
|
def self.collapse(backtrace)
|
|
pattern = Rake.application.options.suppress_backtrace_pattern ||
|
|
SUPPRESS_PATTERN
|
|
backtrace.reject { |elem| elem =~ pattern }
|
|
end
|
|
end
|
|
end
|