aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-27 15:30:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-27 15:30:11 +0000
commitd7138d72db03b51d2404b52fe532735d6f3c1b52 (patch)
treebefb376dc17df4e15113d81448ce22026b33917a /test/ruby
parent969ae329ee2eddc5099f7212ffd0159bff7fbac5 (diff)
downloadruby-d7138d72db03b51d2404b52fe532735d6f3c1b52.tar.gz
* test/fileutils/test_fileutils.rb: add OpenBSD case.
patched by Jeremy Evans [ruby-core:38530] see #5097 * test/ruby/test_process.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_process.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index aad043874e..ba3aeb9825 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1191,8 +1191,10 @@ class TestProcess < Test::Unit::TestCase
end
def test_wait_and_sigchild
- if /freebsd/ =~ RUBY_PLATFORM
- skip "this randomly fails on FreeBSD"
+ if /freebsd|openbsd/ =~ RUBY_PLATFORM
+ # this relates #4173
+ # When ruby can use 2 cores, signal and wait4 may miss the signal.
+ skip "this fails on FreeBSD and OpenBSD on multithreaded environment"
end
signal_received = []
Signal.trap(:CHLD) { signal_received << true }