summaryrefslogtreecommitdiff
path: root/KNOWNBUGS.rb
blob: 2e4f058661dc3f46a1dda30d1f447d3c036da2d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#

assert_normal_exit %q{
  require 'timeout'
  timeout(2) do
    loop do
      def x
        "hello" * 1000
      end
      method(:x).call
    end
  end
}, '[ruby-core:53640] [Bug #8100]'