summaryrefslogtreecommitdiff
path: root/test/ruby/test_trace.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_trace.rb')
-rw-r--r--test/ruby/test_trace.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ruby/test_trace.rb b/test/ruby/test_trace.rb
index 45bc599314..775c458fb1 100644
--- a/test/ruby/test_trace.rb
+++ b/test/ruby/test_trace.rb
@@ -46,4 +46,16 @@ class TestTrace < Test::Unit::TestCase
ensure
untrace_var :$x
end
+
+ def test_trace_break
+ bug2722 = '[ruby-core:31783]'
+ a = Object.new.extend(Enumerable)
+ def a.each
+ yield
+ end
+ assert(Thread.start {
+ Thread.current.add_trace_func(proc{})
+ a.any? {true}
+ }.value, bug2722)
+ end
end