summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-11 01:30:59 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-11 01:30:59 +0000
commit3ec43827f45566d74efe3045cbec94373a8da555 (patch)
treec3abf378987d1b0871dba27b1059da882d11cf7a /test
parent83eb364248d762807a68c678205664807fc8fc7a (diff)
downloadruby-3ec43827f45566d74efe3045cbec94373a8da555.tar.gz
ruby-3ec43827f45566d74efe3045cbec94373a8da555.tar.xz
ruby-3ec43827f45566d74efe3045cbec94373a8da555.zip
* test/ruby/test_process.rb (TestProcess#test_wait_and_sigchild):
Add rescue NotImplementedError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 1bf3bec63..2be4e0d8a 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -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