HADOOP-9624. Merging change r1494363 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1494365 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6c2be5253e
commit
8e81e6fcaf
|
@ -275,6 +275,9 @@ Release 2.1.0-beta - UNRELEASED
|
||||||
HADOOP-9632. TestShellCommandFencer will fail if there is a 'host' machine in
|
HADOOP-9632. TestShellCommandFencer will fail if there is a 'host' machine in
|
||||||
the network. (Chuan Liu via cnauroth)
|
the network. (Chuan Liu via cnauroth)
|
||||||
|
|
||||||
|
HADOOP-9624. TestFSMainOperationsLocalFileSystem failed when the Hadoop test
|
||||||
|
root path has "X" in its name. (Xi Fang via cnauroth)
|
||||||
|
|
||||||
BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HADOOP-8924. Hadoop Common creating package-info.java must not depend on
|
HADOOP-8924. Hadoop Common creating package-info.java must not depend on
|
||||||
|
|
|
@ -71,7 +71,7 @@ public abstract class FSMainOperationsBaseTest extends FileSystemTestHelper {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//A test filter with returns any path containing a "b"
|
//A test filter with returns any path containing an "x" or "X"
|
||||||
final private static PathFilter TEST_X_FILTER = new PathFilter() {
|
final private static PathFilter TEST_X_FILTER = new PathFilter() {
|
||||||
@Override
|
@Override
|
||||||
public boolean accept(Path file) {
|
public boolean accept(Path file) {
|
||||||
|
|
|
@ -81,7 +81,7 @@ public abstract class FileContextMainOperationsBaseTest {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//A test filter with returns any path containing a "b"
|
//A test filter with returns any path containing an "x" or "X"
|
||||||
final private static PathFilter TEST_X_FILTER = new PathFilter() {
|
final private static PathFilter TEST_X_FILTER = new PathFilter() {
|
||||||
@Override
|
@Override
|
||||||
public boolean accept(Path file) {
|
public boolean accept(Path file) {
|
||||||
|
|
Loading…
Reference in New Issue