mirror of
https://github.com/ruby/ruby.git
synced 2025-08-28 15:36:16 +02:00
* compile.c (rb_iseq_compile_node): fix location of a `trace'
instruction (b_return event). [ruby-core:55305] [ruby-trunk - Bug #8489] (need a backport to 2.0.0?) * test/ruby/test_settracefunc.rb: add a test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
87a120fbdc
commit
f41b284fab
3 changed files with 23 additions and 1 deletions
|
@ -953,4 +953,17 @@ class TestSetTraceFunc < Test::Unit::TestCase
|
|||
set_trace_func(nil)
|
||||
end
|
||||
end
|
||||
|
||||
def test_tracepoint_b_return_with_next
|
||||
n = 0
|
||||
TracePoint.new(:b_return){
|
||||
n += 1
|
||||
}.enable{
|
||||
3.times{
|
||||
next
|
||||
} # 3 times b_retun
|
||||
} # 1 time b_return
|
||||
|
||||
assert_equal 4, n
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue