From 554577015f81be1427207dcf262739c1844d06d8 Mon Sep 17 00:00:00 2001 From: odaira Date: Tue, 7 Oct 2014 19:40:13 +0000 Subject: test/ruby/test_process.rb (TestProcess#test_setsid): AIX does not allow Process::getsid(pid) when pid is in a different session git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_process.rb') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 0530c8d088..5aad1d52fb 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1676,9 +1676,9 @@ class TestProcess < Test::Unit::TestCase def test_setsid return unless Process.respond_to?(:setsid) return unless Process.respond_to?(:getsid) - # OpenBSD doesn't allow Process::getsid(pid) when pid is in + # OpenBSD and AIX don't allow Process::getsid(pid) when pid is in # different session. - return if /openbsd/ =~ RUBY_PLATFORM + return if /openbsd|aix/ =~ RUBY_PLATFORM IO.popen([RUBY, "-e", <