Repository: hadoop Updated Branches: refs/heads/branch-2 f48af332a -> 75c70339a
HADOOP-12438. Reset RawLocalFileSystem.useDeprecatedFileStatus in TestLocalFileSystem. Contributed by Chris Nauroth. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/75c70339 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/75c70339 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/75c70339 Branch: refs/heads/branch-2 Commit: 75c70339ab4f64d053c69eb8501d3e69e7aff83a Parents: f48af33 Author: Haohui Mai <[email protected]> Authored: Wed Sep 23 19:33:55 2015 -0700 Committer: Haohui Mai <[email protected]> Committed: Wed Sep 23 19:34:19 2015 -0700 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ .../src/test/java/org/apache/hadoop/fs/TestLocalFileSystem.java | 1 + 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/75c70339/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 900a0b4..17c2421 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -635,6 +635,9 @@ Release 2.8.0 - UNRELEASED HADOOP-12417. TestWebDelegationToken failing with port in use. (Mingliang Liu via wheat9) + HADOOP-12438. Reset RawLocalFileSystem.useDeprecatedFileStatus in + TestLocalFileSystem. (Chris Nauroth via wheat9) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/75c70339/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestLocalFileSystem.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestLocalFileSystem.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestLocalFileSystem.java index 93e8c85..8fef4ea 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestLocalFileSystem.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestLocalFileSystem.java @@ -71,6 +71,7 @@ public class TestLocalFileSystem { FileUtil.setWritable(base, true); FileUtil.fullyDelete(base); assertTrue(!base.exists()); + RawLocalFileSystem.useStatIfAvailable(); } /**
