class ParallelTests::CLI

def report_output(result, lock)

def report_output(result, lock)
  File.open(lock.path) do |open_lock|
    open_lock.flock File::LOCK_EX
    $stdout.puts result[:stdout]
    $stdout.flush
  end
end