mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4b8de30bc5
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
100 lines
1.4 KiB
Ruby
100 lines
1.4 KiB
Ruby
#
|
|
# This test file concludes tests which point out known bugs.
|
|
# So all tests will cause failure.
|
|
#
|
|
|
|
# test is not written...
|
|
flunk '[ruby-dev:31819] rb_clear_cache_by_class'
|
|
flunk '[ruby-dev:31820] valgrind set_trace_func'
|
|
|
|
assert_equal 'ok', %q{
|
|
class X < RuntimeError;end
|
|
x = [X]
|
|
begin
|
|
raise X
|
|
rescue *x
|
|
:ok
|
|
end
|
|
}, '[ruby-core:14537]'
|
|
|
|
assert_equal 'ok', %q{
|
|
while true
|
|
*, z = 1
|
|
break
|
|
end
|
|
:ok
|
|
}, '[ruby-dev:32892]'
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
1.times do
|
|
[
|
|
1, 2, 3, 4, 5, 6, 7, 8,
|
|
begin
|
|
false ? next : p
|
|
break while true
|
|
end
|
|
]
|
|
end
|
|
:ok
|
|
}, '[ruby-dev:32882]'
|
|
|
|
|
|
assert_equal 'ok', %q{
|
|
class C
|
|
define_method(:foo) {
|
|
if block_given?
|
|
:ng
|
|
else
|
|
:ok
|
|
end
|
|
}
|
|
end
|
|
C.new.foo
|
|
}, '[ruby-core:14813]'
|
|
|
|
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{
|
|
module M
|
|
class A
|
|
class << self
|
|
attr_accessor :at
|
|
def workflow_rule
|
|
yield self
|
|
end
|
|
|
|
def eval_str(str)
|
|
eval(str)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
M::A.eval_str(<<-END)
|
|
workflow_rule do |r|
|
|
r.at 1
|
|
end
|
|
END
|
|
}, '[ruby-core:14641]'
|
|
|
|
assert_equal 'true', %{
|
|
t = Thread.new { loop {} }
|
|
pid = fork {
|
|
exit t.status != "run"
|
|
}
|
|
Process.wait pid
|
|
$?.success?
|
|
}
|
|
|