class ParallelTests::Test::Runner

def self.fetch_output(process)

read output of the process and print in in chucks
def self.fetch_output(process)
  all = ''
  while buffer = process.readpartial(1000000)
    all << buffer
    $stdout.print buffer
    $stdout.flush
  end rescue EOFError
  all
end