MAPREDUCE-3775. Change MiniYarnCluster to escape special chars in testname. (Hitesh Shah via mahadev)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1240603 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c7d64769c1
commit
f3c35222e6
|
@ -699,6 +699,9 @@ Release 0.23.1 - Unreleased
|
|||
MAPREDUCE-3759. ClassCastException thrown in -list-active-trackers when
|
||||
there are a few unhealthy nodes (vinodkv via mahadev)
|
||||
|
||||
MAPREDUCE-3775. Change MiniYarnCluster to escape special chars in testname.
|
||||
(Hitesh Shah via mahadev)
|
||||
|
||||
Release 0.23.0 - 2011-11-01
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -49,6 +49,9 @@ public class TestMiniMRClientCluster {
|
|||
private static Path[] inFiles = new Path[5];
|
||||
private static MiniMRClientCluster mrCluster;
|
||||
|
||||
private class InternalClass {
|
||||
}
|
||||
|
||||
@BeforeClass
|
||||
public static void setup() throws IOException {
|
||||
final Configuration conf = new Configuration();
|
||||
|
@ -73,7 +76,7 @@ public class TestMiniMRClientCluster {
|
|||
|
||||
// create the mini cluster to be used for the tests
|
||||
mrCluster = MiniMRClientClusterFactory.create(
|
||||
TestMiniMRClientCluster.class, 1, new Configuration());
|
||||
InternalClass.class, 1, new Configuration());
|
||||
}
|
||||
|
||||
@AfterClass
|
||||
|
|
|
@ -81,11 +81,11 @@ public class MiniYARNCluster extends CompositeService {
|
|||
*/
|
||||
public MiniYARNCluster(String testName, int noOfNodeManagers,
|
||||
int numLocalDirs, int numLogDirs) {
|
||||
|
||||
super(testName);
|
||||
super(testName.replace("$", ""));
|
||||
this.numLocalDirs = numLocalDirs;
|
||||
this.numLogDirs = numLogDirs;
|
||||
this.testWorkDir = new File("target", testName);
|
||||
this.testWorkDir = new File("target",
|
||||
testName.replace("$", ""));
|
||||
try {
|
||||
FileContext.getLocalFSFileContext().delete(
|
||||
new Path(testWorkDir.getAbsolutePath()), true);
|
||||
|
|
Loading…
Reference in New Issue