Use the block form of Open3.popen3 to close FDs.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-05-30 14:06:39 +00:00
Родитель ab4c6921cb
Коммит 9a51bc62f9
1 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -18,12 +18,13 @@ module RubyRunner
def run_ruby(option_list)
puts "COMMAND: [#{RUBY} #{option_list.join ' '}]" if @verbose
inn, out, err, wait = Open3.popen3(RUBY, *option_list)
Open3.popen3(RUBY, *option_list) {|inn, out, err, wait|
inn.close
@exit = wait ? wait.value : $?
@out = out.read
@err = err.read
}
puts "OUTPUT: [#{@out}]" if @verbose
puts "ERROR: [#{@err}]" if @verbose