* test/ruby/test_process.rb (TestProcess#test_wait_and_sigchild):

Add rescue NotImplementedError.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-01-11 01:30:59 +00:00
Родитель f914b5a7c2
Коммит 832740d15c
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1075,6 +1075,7 @@ class TestProcess < Test::Unit::TestCase
Process.wait pid
sleep 2
assert_equal [true], signal_received, " [ruby-core:19744]"
rescue NotImplementedError
ensure
Signal.trap(:CHLD, 'DEFAULT')
end