YARN-1060. Two tests in TestFairScheduler are missing @Test annotation (Niranjan Singh via Sandy Ryza)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1513725 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sanford Ryza 2013-08-14 04:40:30 +00:00
parent 72fd3b48e5
commit 3f84e0ba32
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,9 @@ Release 2.3.0 - UNRELEASED
YARN-758. Augment MockNM to use multiple cores (Karthik Kambatla via
Sandy Ryza)
YARN-1060. Two tests in TestFairScheduler are missing @Test annotation
(Niranjan Singh via Sandy Ryza)
Release 2.1.1-beta - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -1991,6 +1991,7 @@ public void testReservationsStrictLocality() {
assertEquals(0, app.getReservedContainers().size());
}
@Test
public void testNoMoreCpuOnNode() {
RMNode node1 = MockNodes.newNodeInfo(1, Resources.createResource(2048, 1),
1, "127.0.0.1");
@ -2009,6 +2010,7 @@ public void testNoMoreCpuOnNode() {
assertEquals(1, app.getLiveContainers().size());
}
@Test
public void testBasicDRFAssignment() throws Exception {
RMNode node = MockNodes.newNodeInfo(1, BuilderUtils.newResource(8192, 5));
NodeAddedSchedulerEvent nodeEvent = new NodeAddedSchedulerEvent(node);