Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suppressed "<internal:array>:52:in 'Array#each'" from backtrace #554

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/rake/backtrace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module Backtrace # :nodoc: all
map { |f| File.expand_path(f) }.
reject { |s| s.nil? || s =~ /^ *$/ }
SUPPRESSED_PATHS_RE = SUPPRESSED_PATHS.map { |f| Regexp.quote(f) }.join("|")
SUPPRESSED_PATHS_RE << "|^<internal:\\w+>"
SUPPRESSED_PATHS_RE << "|^org\\/jruby\\/\\w+\\.java" if
Object.const_defined?(:RUBY_ENGINE) and RUBY_ENGINE == "jruby"

Expand Down
8 changes: 8 additions & 0 deletions test/test_rake_backtrace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ def test_near_system_dir_isnt_suppressed

assert_equal paths, actual
end

def test_ruby_array_each_suppressed
paths = ["<internal:array>:52:in 'Array#each'"]

actual = Rake::Backtrace.collapse(paths)

assert_equal [], actual
end
end

class TestRakeBacktrace < Rake::TestCase # :nodoc:
Expand Down