" No of running Reduces before fail " + oldRunningReduces);
LOG.info(
" No of runing reduces after fail " + job.runningReduces());
assertEquals(
"Running reduces count should be updated from " + oldRunningReduces +
" to " + (oldRunningReduces - 1), job.runningReduces(),
oldRunningReduces - 1);
// Verify total speculative tasks by jobtracker instrumentation
assertEquals("Total speculative maps", 1, fakeInst.numSpeculativeMaps);
assertEquals("Total speculative reduces", 1,
fakeInst.numSpeculativeReduces);