mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13b5b22ae6
calculate correct stack depth at compile time. * insns.def (emptstack): remove it and add a new insn "adjuststack". * bootstraptest/test_knownbug.rb: move/remove fixed test. * bootstraptest/test_syntax.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
47 lines
825 B
Ruby
47 lines
825 B
Ruby
#
|
|
# This test file concludes tests which point out known bugs.
|
|
# So all tests will cause failure.
|
|
#
|
|
|
|
assert_equal 'ok', %q{
|
|
class C
|
|
define_method(:foo) {
|
|
if block_given?
|
|
:ok
|
|
else
|
|
:ng
|
|
end
|
|
}
|
|
end
|
|
C.new.foo {}
|
|
}, '[ruby-core:14813]'
|
|
|
|
assert_equal 'ok', %q{
|
|
class C
|
|
define_method(:foo) {
|
|
if block_given?
|
|
:ng
|
|
else
|
|
:ok
|
|
end
|
|
}
|
|
end
|
|
C.new.foo
|
|
}, '[ruby-core:14813]'
|
|
|
|
# test is not written...
|
|
flunk '[ruby-dev:31819] rb_clear_cache_by_class'
|
|
flunk '[ruby-dev:31820] valgrind set_trace_func'
|
|
flunk '[ruby-dev:32746] Invalid read of size 1'
|
|
|
|
assert_equal 'ok', %q{
|
|
class X < RuntimeError;end
|
|
x = [X]
|
|
begin
|
|
raise X
|
|
rescue *x
|
|
:ok
|
|
end
|
|
}, '[ruby-core:14537]'
|
|
|
|
assert_valid_syntax('1.times {|i|print (42),1;}', '[ruby-list:44479]')
|