HDFS-4632. globStatus using backslash for escaping does not work on Windows. Contributed by Chuan Liu.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1514168 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0182ea16d3
commit
97d04ae132
|
@ -327,6 +327,9 @@ Release 2.1.1-beta - UNRELEASED
|
||||||
HDFS-4898. BlockPlacementPolicyWithNodeGroup.chooseRemoteRack() fails to
|
HDFS-4898. BlockPlacementPolicyWithNodeGroup.chooseRemoteRack() fails to
|
||||||
properly fallback to local rack. (szetszwo)
|
properly fallback to local rack. (szetszwo)
|
||||||
|
|
||||||
|
HDFS-4632. globStatus using backslash for escaping does not work on Windows.
|
||||||
|
(Chuan Liu via cnauroth)
|
||||||
|
|
||||||
Release 2.1.0-beta - 2013-08-06
|
Release 2.1.0-beta - 2013-08-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -466,6 +466,9 @@ public class TestGlobPaths {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void pTestEscape() throws IOException {
|
public void pTestEscape() throws IOException {
|
||||||
|
// Skip the test case on Windows because backslash will be treated as a
|
||||||
|
// path separator instead of an escaping character on Windows.
|
||||||
|
org.junit.Assume.assumeTrue(!Path.WINDOWS);
|
||||||
try {
|
try {
|
||||||
String [] files = new String[] {USER_DIR+"/ab\\[c.d"};
|
String [] files = new String[] {USER_DIR+"/ab\\[c.d"};
|
||||||
Path[] matchedPath = prepareTesting(USER_DIR+"/ab\\[c.d", files);
|
Path[] matchedPath = prepareTesting(USER_DIR+"/ab\\[c.d", files);
|
||||||
|
|
Loading…
Reference in New Issue