MAPREDUCE-3153. Fix TestFileOutputCommitter which was broken by MAPREDUCE-2702. Contributed by Mahadev Konar.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1180769 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3ddb52cfc0
commit
4f1cdab6d8
|
@ -1549,6 +1549,9 @@ Release 0.23.0 - Unreleased
|
|||
MAPREDUCE-2876. Use a different config for ContainerAllocationExpirer.
|
||||
(Anupam Seth via acmurthy)
|
||||
|
||||
MAPREDUCE-3153. Fix TestFileOutputCommitter which was broken by
|
||||
MAPREDUCE-2702. (mahadev via acmurthy)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -37,6 +37,7 @@ import org.apache.hadoop.mapreduce.TaskAttemptID;
|
|||
import org.apache.hadoop.mapreduce.task.JobContextImpl;
|
||||
import org.apache.hadoop.mapreduce.task.TaskAttemptContextImpl;
|
||||
|
||||
|
||||
public class TestFileOutputCommitter extends TestCase {
|
||||
private static Path outDir = new Path(System.getProperty("test.build.data",
|
||||
"/tmp"), "output");
|
||||
|
@ -187,9 +188,9 @@ public class TestFileOutputCommitter extends TestCase {
|
|||
assertNotNull(th);
|
||||
assertTrue(th instanceof IOException);
|
||||
assertTrue(th.getMessage().contains("fake delete failed"));
|
||||
File jobTmpDir = new File(new Path(outDir,
|
||||
FileOutputCommitter.TEMP_DIR_NAME).toString());
|
||||
File taskTmpDir = new File(jobTmpDir, "_" + taskID);
|
||||
String filename = committer.getTaskAttemptBaseDirName(tContext);
|
||||
File jobTmpDir = new File(outDir.toString(), committer.getJobAttemptBaseDirName(jContext));
|
||||
File taskTmpDir = new File(outDir.toString(), filename);
|
||||
File expectedFile = new File(taskTmpDir, partFile);
|
||||
assertTrue(expectedFile + " does not exists", expectedFile.exists());
|
||||
|
||||
|
|
Loading…
Reference in New Issue