소스 검색

MAPREDUCE-4856. TestJobOutputCommitter uses same directory as TestJobCleanup (Sandy Ryza via tgraves)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1424616 13f79535-47bb-0310-9956-ffa450edef68
Thomas Graves 12 년 전
부모
커밋
d73f266c63

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

@@ -32,6 +32,9 @@ Release 0.23.6 - UNRELEASED
     MAPREDUCE-4861. Cleanup: Remove unused mapreduce.security.token.
     MAPREDUCE-4861. Cleanup: Remove unused mapreduce.security.token.
     DelegationTokenRenewal  (Karthik Kambatla via tgraves)
     DelegationTokenRenewal  (Karthik Kambatla via tgraves)
 
 
+    MAPREDUCE-4856. TestJobOutputCommitter uses same directory as TestJobCleanup 
+    (Sandy Ryza via tgraves)
+
 Release 0.23.5 - UNRELEASED
 Release 0.23.5 - UNRELEASED
 
 
   INCOMPATIBLE CHANGES
   INCOMPATIBLE CHANGES

+ 1 - 1
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/lib/output/TestJobOutputCommitter.java

@@ -45,7 +45,7 @@ public class TestJobOutputCommitter extends HadoopTestCase {
 
 
   private static String TEST_ROOT_DIR = new File(System.getProperty(
   private static String TEST_ROOT_DIR = new File(System.getProperty(
       "test.build.data", "/tmp")
       "test.build.data", "/tmp")
-      + "/" + "test-job-cleanup").toString();
+      + "/" + "test-job-output-committer").toString();
   private static final String CUSTOM_CLEANUP_FILE_NAME = "_custom_cleanup";
   private static final String CUSTOM_CLEANUP_FILE_NAME = "_custom_cleanup";
   private static final String ABORT_KILLED_FILE_NAME = "_custom_abort_killed";
   private static final String ABORT_KILLED_FILE_NAME = "_custom_abort_killed";
   private static final String ABORT_FAILED_FILE_NAME = "_custom_abort_failed";
   private static final String ABORT_FAILED_FILE_NAME = "_custom_abort_failed";