Actions
Bug #17413
closed--backtrace-limit: wrong level counter
Description
Having this test.rb
:
def inner
raise 'test'
end
def outer
inner
end
outer
...one might observe the following:
$ ruby test.rb
test.rb:2:in `inner': test (RuntimeError)
from test.rb:6:in `outer'
from test.rb:9:in `<main>'
# Print me 0 levels (only the report):
$ ruby --backtrace-limit=0 test.rb
test.rb:2:in `inner': test (RuntimeError)
... 3 levels... # <== Umm, which 3? I saw 2 there!
$ ruby --backtrace-limit=1 test.rb
test.rb:2:in `inner': test (RuntimeError)
from test.rb:6:in `outer'
... 2 levels... # <== Which 2?..
# So, the next increase of the limit will leave just 1 hidden, right?..
$ ruby --backtrace-limit=2 test.rb
test.rb:2:in `inner': test (RuntimeError)
from test.rb:6:in `outer'
from test.rb:9:in `<main>'
# Nope!
Actions
Like0
Like0Like0Like0Like0