|
@@ -195,8 +195,7 @@ public class TestJobCleanup {
|
|
|
RunningJob job = jobClient.submitJob(jc);
|
|
|
JobID id = job.getID();
|
|
|
job.waitForCompletion();
|
|
|
- Counters counters = job.getCounters();
|
|
|
- assertTrue("No. of failed maps should be 1",counters.getCounter(JobCounter.NUM_FAILED_MAPS) == 1);
|
|
|
+ assertEquals("Job did not fail", JobStatus.FAILED, job.getJobState());
|
|
|
|
|
|
if (fileName != null) {
|
|
|
Path testFile = new Path(outDir, fileName);
|
|
@@ -242,9 +241,7 @@ public class TestJobCleanup {
|
|
|
job.killJob(); // kill the job
|
|
|
|
|
|
job.waitForCompletion(); // wait for the job to complete
|
|
|
-
|
|
|
- counters = job.getCounters();
|
|
|
- assertTrue("No. of killed maps should be 1", counters.getCounter(JobCounter.NUM_KILLED_MAPS) == 1);
|
|
|
+ assertEquals("Job was not killed", JobStatus.KILLED, job.getJobState());
|
|
|
|
|
|
if (fileName != null) {
|
|
|
Path testFile = new Path(outDir, fileName);
|