MAPREDUCE-3281. Fixed a bug in TestLinuxContainerExecutorWithMocks. (vinodkv)
svn merge -c r1189818 --ignore-ancestry ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1189819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1f42531bce
commit
4f1d9492f0
|
@ -1750,6 +1750,8 @@ Release 0.23.0 - Unreleased
|
||||||
containers (process-trees) irrespective of whether the container succeeded,
|
containers (process-trees) irrespective of whether the container succeeded,
|
||||||
or killed. Contributed by Hitesh Shah.
|
or killed. Contributed by Hitesh Shah.
|
||||||
|
|
||||||
|
MAPREDUCE-3281. Fixed a bug in TestLinuxContainerExecutorWithMocks. (vinodkv)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -117,7 +117,7 @@ public class TestLinuxContainerExecutorWithMocks {
|
||||||
appSubmitter, appId, workDir);
|
appSubmitter, appId, workDir);
|
||||||
assertEquals(0, ret);
|
assertEquals(0, ret);
|
||||||
assertEquals(Arrays.asList(appSubmitter, cmd, appId, containerId,
|
assertEquals(Arrays.asList(appSubmitter, cmd, appId, containerId,
|
||||||
workDir.toString(), "/bin/echo", "/dev/null", pidFile),
|
workDir.toString(), "/bin/echo", "/dev/null", pidFile.toString()),
|
||||||
readMockParams());
|
readMockParams());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue