summaryrefslogtreecommitdiff
path: root/bootstraptest/test_knownbug.rb
blob: 03feb653a3f656a294099e6f153c1b7038276d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#

assert_equal 'ok', %q{
begin
  r, w = IO.pipe
  w.close
  # assert_raise(IOError, "[ruby-dev:31650]") { 20000.times { r.ungetc "a" } }
  20000.times { r.ungetc "a" }
rescue IOError
  :ok
ensure
  r.close
end
}, 'rename test/ruby/test_io.rb#_test_ungetc if fixed'

assert_equal 'ok', %q{
  class B
    def m() :fail end
  end
  class C < B
    undef m
    begin
      remove_method :m
    rescue NameError
    end
  end
  begin
    C.new.m
  rescue NameError
    :ok
  end
}, '[ruby-dev:31816], [ruby-dev:31817]'

assert_equal 'ok', %q{
  Process.setrlimit(Process::RLIMIT_STACK, 1024*1024)
  class C
    attr "a" * (2*1024*1024)
  end
  :ok
}, '[ruby-dev:31818]'