浏览代码

MAPREDUCE-5366. Merging change r1500848 from branch-2 to branch-2.1-beta.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2.1-beta@1500851 13f79535-47bb-0310-9956-ffa450edef68
Chris Nauroth 12 年之前
父节点
当前提交
f43702233f

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

@@ -448,6 +448,9 @@ Release 2.1.0-beta - 2013-07-02
     MAPREDUCE-5360. TestMRJobClient fails on Windows due to path format.
     MAPREDUCE-5360. TestMRJobClient fails on Windows due to path format.
     (Chuan Liu via cnauroth)
     (Chuan Liu via cnauroth)
 
 
+    MAPREDUCE-5366. TestMRAsyncDiskService fails on Windows. (Chuan Liu via
+    cnauroth)
+
     MAPREDUCE-5291. Change MR App to use updated property names in
     MAPREDUCE-5291. Change MR App to use updated property names in
     container-log4j.properties. (Zhijie Shen via sseth)
     container-log4j.properties. (Zhijie Shen via sseth)
 
 

+ 5 - 5
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/util/TestMRAsyncDiskService.java

@@ -59,8 +59,8 @@ public class TestMRAsyncDiskService extends TestCase {
     pathname = (new Path(pathname)).toUri().getPath();
     pathname = (new Path(pathname)).toUri().getPath();
     cwd = (new Path(cwd)).toUri().getPath();
     cwd = (new Path(cwd)).toUri().getPath();
 
 
-    String [] cwdParts = cwd.split(File.separator);
-    String [] pathParts = pathname.split(File.separator);
+    String [] cwdParts = cwd.split(Path.SEPARATOR);
+    String [] pathParts = pathname.split(Path.SEPARATOR);
 
 
     // There are three possible cases:
     // There are three possible cases:
     // 1) pathname and cwd are equal. Return '.'
     // 1) pathname and cwd are equal. Return '.'
@@ -94,18 +94,18 @@ public class TestMRAsyncDiskService extends TestCase {
     int parentDirsRequired = cwdParts.length - common;
     int parentDirsRequired = cwdParts.length - common;
     for (int i = 0; i < parentDirsRequired; i++) {
     for (int i = 0; i < parentDirsRequired; i++) {
       sb.append("..");
       sb.append("..");
-      sb.append(File.separator);
+      sb.append(Path.SEPARATOR);
     }
     }
 
 
     // Then append all non-common parts of 'pathname' itself.
     // Then append all non-common parts of 'pathname' itself.
     for (int i = common; i < pathParts.length; i++) {
     for (int i = common; i < pathParts.length; i++) {
       sb.append(pathParts[i]);
       sb.append(pathParts[i]);
-      sb.append(File.separator);
+      sb.append(Path.SEPARATOR);
     }
     }
 
 
     // Don't end with a '/'.
     // Don't end with a '/'.
     String s = sb.toString();
     String s = sb.toString();
-    if (s.endsWith(File.separator)) {
+    if (s.endsWith(Path.SEPARATOR)) {
       s = s.substring(0, s.length() - 1);
       s = s.substring(0, s.length() - 1);
     }
     }