1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

mspec.rb: keep jobserver fds

* spec/mspec/lib/mspec/commands/mspec.rb (MSpecMain#run): do not
  close jobserver FDs for mspec-run.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-06-24 01:44:49 +00:00
parent b11350d609
commit dc62793a91

View file

@ -159,7 +159,7 @@ class MSpecMain < MSpecScript
exit multi_exec(argv)
else
$stderr.puts "$ #{argv.join(' ')}"
exec(*argv)
exec(*argv, close_others: false)
end
end
end