* 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
This commit is contained in:
parent
01762af749
commit
dbe4a7f11c
@ -1719,7 +1719,11 @@ class TestProcess < Test::Unit::TestCase
|
|||||||
bug11510 = '[ruby-core:70671] [Bug #11510]'
|
bug11510 = '[ruby-core:70671] [Bug #11510]'
|
||||||
pid = nil
|
pid = nil
|
||||||
opt = {timeout: 10, stdout_filter: ->(s) {pid = s}}
|
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)
|
assert_ruby_status(["-", RUBY], <<-'end;', bug11510, **opt)
|
||||||
RUBY = ARGV[0]
|
RUBY = ARGV[0]
|
||||||
th = Thread.start {
|
th = Thread.start {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user