* bootstraptest/test_thread.rb: please please please remember that there are

platforms that do not support fork.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-12-11 07:47:29 +00:00
Родитель b32ee85f97
Коммит 0676ac37be
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -437,5 +437,9 @@ assert_finish 3, %q{
}, '[ruby-core:23572]'
assert_equal 'ok', %q{
Process.waitpid2(fork {sleep 1})[1].success? ? 'ok' : 'ng'
begin
Process.waitpid2(fork {sleep 1})[1].success? ? 'ok' : 'ng'
rescue NotImplementedError
'ok'
end
}