summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-12 13:32:36 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-12 13:32:36 +0000
commitfcabdd4a1c750859c3f3c93a14c1c430a4efc886 (patch)
treef293bc07ed0536b640e9666379604d2a0d8a4b64 /test/ruby/test_process.rb
parent5369d768c01f7b5cca76a3ee7624a57f90d9b080 (diff)
merges r21426 from trunk into ruby_1_9_1.
* test/ruby/test_process.rb (TestProcess#test_wait_and_sigchild): Add rescue NotImplementedError. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-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 c4134a4a1..eda85c2e7 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1041,6 +1041,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