class ParallelTests::Test::Runner
def self.fetch_output(process)
def self.fetch_output(process) all = '' while buffer = process.readpartial(1000000) all << buffer $stdout.print buffer $stdout.flush end rescue EOFError all end
def self.fetch_output(process) all = '' while buffer = process.readpartial(1000000) all << buffer $stdout.print buffer $stdout.flush end rescue EOFError all end