mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
0893957bc6
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
16 lines
355 B
Ruby
16 lines
355 B
Ruby
#
|
|
# This test file concludes tests which point out known bugs.
|
|
# So all tests will cause failure.
|
|
#
|
|
|
|
assert_equal '0', %q{
|
|
GC.stress = true
|
|
pid = fork {}
|
|
Process.wait pid
|
|
$?.to_i
|
|
}, '[ruby-dev:32404]'
|
|
|
|
assert_match /unterminated string meets end of file/, %q{
|
|
STDERR.reopen(STDOUT)
|
|
eval("\"\xfd".force_encoding("utf-8"))
|
|
}, '[ruby-dev:32429]'
|