summaryrefslogtreecommitdiff
path: root/test
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
commit9aa12f778f0b8dd1a9cc0f109496c495a5dad189 (patch)
treef293bc07ed0536b640e9666379604d2a0d8a4b64 /test
parent823491511ea24af1f04293ae06f331b393e26ef9 (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: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21460 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 c4134a4a17..eda85c2e7f 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