mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
1 changed files with 5 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue