class ParallelTests::Test::RuntimeLogger

def with_locked_log

def with_locked_log
  File.open(logfile, File::RDWR|File::CREAT) do |logfile|
    logfile.flock(File::LOCK_EX)
    yield logfile
  end
end