瀏覽代碼

Merge r1588347 from branch2: YARN-1750. TestNodeStatusUpdater#testNMRegistration is incorrect in test case. (Wangda Tan via junping_du)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2.4@1588348 13f79535-47bb-0310-9956-ffa450edef68
Junping Du 11 年之前
父節點
當前提交
7d455e8181

+ 3 - 0
hadoop-yarn-project/CHANGES.txt

@@ -64,6 +64,9 @@ Release 2.4.1 - UNRELEASED
     YARN-1931. Private API change in YARN-1824 in 2.4 broke compatibility 
     with previous releases (Sandy Ryza via tgraves)
 
+    YARN-1750. TestNodeStatusUpdater#testNMRegistration is incorrect in test 
+    case. (Wangda Tan via junping_du)
+
 Release 2.4.0 - 2014-04-07 
 
   INCOMPATIBLE CHANGES

+ 5 - 3
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/java/org/apache/hadoop/yarn/server/nodemanager/TestNodeStatusUpdater.java

@@ -261,10 +261,12 @@ public class TestNodeStatusUpdater {
         this.context.getContainers().put(secondContainerID, container);
       } else if (heartBeatID == 3) {
         // Checks on the RM end
-        Assert.assertEquals("Number of applications should only be one!", 1,
+        Assert.assertEquals("Number of applications should have two!", 2,
             appToContainers.size());
-        Assert.assertEquals("Number of container for the app should be two!",
-            2, appToContainers.get(appId2).size());
+        Assert.assertEquals("Number of container for the app-1 should be only one!",
+            1, appToContainers.get(appId1).size());
+        Assert.assertEquals("Number of container for the app-2 should be only one!",
+            1, appToContainers.get(appId2).size());
 
         // Checks on the NM end
         ConcurrentMap<ContainerId, Container> activeContainers =