Repository: hadoop Updated Branches: refs/heads/trunk 1f707ecff -> 0ef7ff47d
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/0ef7ff47 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/0ef7ff47 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/0ef7ff47 Branch: refs/heads/trunk Commit: 0ef7ff47d5d031783ce61e93d36dc30703b5b28b Parents: 1f707ec Author: Haohui Mai <[email protected]> Authored: Wed Sep 23 19:33:55 2015 -0700 Committer: Haohui Mai <[email protected]> Committed: Wed Sep 23 19:36:44 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/0ef7ff47/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 acc2120..73e56b3 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -1144,6 +1144,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/0ef7ff47/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 13499ef..912c4f4 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 @@ -72,6 +72,7 @@ public class TestLocalFileSystem { FileUtil.setWritable(base, true); FileUtil.fullyDelete(base); assertTrue(!base.exists()); + RawLocalFileSystem.useStatIfAvailable(); } /**
