* 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:
ko1 2013-06-14 09:54:58 +00:00
parent 87a120fbdc
commit f41b284fab
3 changed files with 23 additions and 1 deletions

View file

@ -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