LOG.info("Starting testEmptyJob");
corona = new MiniCoronaCluster.Builder().numTaskTrackers(1).build();
JobConf conf = corona.createJobConf();
long start = System.currentTimeMillis();
String[] args = {"-m", "0", "-r", "0", "-mt", "1", "-rt", "1", "-nosetup" };
ToolRunner.run(conf, new SleepJob(), args);
// This sleep is here to wait for the JobTracker to go down completely
TstUtils.reliableSleep(1000);
long end = System.currentTimeMillis();
LOG.info("Time spent for testEmptyJob:" + (end - start));
}