aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest/test_knownbug.rb
blob: eebd29934072dee12f47f0e4d18a9147957f4ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#

assert_normal_exit %q{
  counter = 2
  while true
    counter -= 1
    next if counter != 0
    break
  end
}, '[ruby-core:14385]'