From dbe4a7f11c7f3bd6d60f88dbaef448a5491633b7 Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 9 Sep 2015 02:57:58 +0000 Subject: [PATCH] * test/ruby/test_process.rb (TestProcess#test_popen_exit): platform specific option. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index c787e78749..e26d0a46a5 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1719,7 +1719,11 @@ class TestProcess < Test::Unit::TestCase bug11510 = '[ruby-core:70671] [Bug #11510]' pid = nil opt = {timeout: 10, stdout_filter: ->(s) {pid = s}} - opt[:pgroup] = true unless windows? + if windows? + opt[:new_pgroup] = true + else + opt[:pgroup] = true + end assert_ruby_status(["-", RUBY], <<-'end;', bug11510, **opt) RUBY = ARGV[0] th = Thread.start {