TestJobTrackerRestart fails on trunk
------------------------------------
Key: HADOOP-4879
URL: https://issues.apache.org/jira/browse/HADOOP-4879
Project: Hadoop Core
Issue Type: Bug
Components: mapred, test
Affects Versions: 0.20.0
Reporter: Arun C Murthy
Assignee: Arun C Murthy
Priority: Blocker
Fix For: 0.20.0
HADOOP-1230 changed the definition of TaskReport.equals:
{noformat}
@@ -172,7 +172,7 @@
return false;
if(o.getClass().equals(TaskReport.class)) {
TaskReport report = (TaskReport) o;
- return counters.contentEquals(report.getCounters())
+ return counters.equals(report.getCounters())
{noformat}
This results in:
{noformat}
Testcase: testJobTrackerRestart took 473.926 sec
FAILED
Task reports for same attempt has changed
junit.framework.AssertionFailedError: Task reports for same attempt has changed
at
org.apache.hadoop.mapred.TestJobTrackerRestart.testTaskReports(TestJobTrackerRestart.java:514)
at
org.apache.hadoop.mapred.TestJobTrackerRestart.testTaskEventsAndReportsWithRecovery(TestJobTrackerRestart.java:447)
at
org.apache.hadoop.mapred.TestJobTrackerRestart.testJobTrackerRestart(TestJobTrackerRestart.java:599)
{noformat}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.