Repository: hadoop Updated Branches: refs/heads/trunk 4e88ff5b2 -> b578807b9
HADOOP-12095. org.apache.hadoop.fs.shell.TestCount fails. Contributed by Brahma Reddy Battula. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/b578807b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/b578807b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/b578807b Branch: refs/heads/trunk Commit: b578807b9903f3f2056c7064bfe5af8619eb4835 Parents: 4e88ff5 Author: Akira Ajisaka <[email protected]> Authored: Tue Jun 16 13:38:03 2015 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Tue Jun 16 13:38:03 2015 -0700 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ .../src/test/java/org/apache/hadoop/fs/shell/TestCount.java | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/b578807b/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 11c2f2a..9a16a7d 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -858,6 +858,9 @@ Release 2.8.0 - UNRELEASED HADOOP-12001. Fixed LdapGroupsMapping to include configurable Posix UID and GID attributes during the search. (Patrick White via vinodkv) + HADOOP-12095. org.apache.hadoop.fs.shell.TestCount fails. + (Brahma Reddy Battula via aajisaka) + Release 2.7.1 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/b578807b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/shell/TestCount.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/shell/TestCount.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/shell/TestCount.java index 44fc1e6..116c071 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/shell/TestCount.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/shell/TestCount.java @@ -281,7 +281,7 @@ public class TestCount { count.processOptions(options); String withStorageTypeHeader = // <----13---> <-------17------> <----13-----> <------17-------> - " DISK_QUOTA REM_DISK_QUOTA SSD_QUOTA REM_SSD_QUOTA " + + " SSD_QUOTA REM_SSD_QUOTA DISK_QUOTA REM_DISK_QUOTA " + // <----13---> <-------17------> "ARCHIVE_QUOTA REM_ARCHIVE_QUOTA " + "PATHNAME"; @@ -335,8 +335,8 @@ public class TestCount { count.processOptions(options); String withStorageTypeHeader = // <----13---> <-------17------> - " DISK_QUOTA REM_DISK_QUOTA " + " SSD_QUOTA REM_SSD_QUOTA " + + " DISK_QUOTA REM_DISK_QUOTA " + "ARCHIVE_QUOTA REM_ARCHIVE_QUOTA " + "PATHNAME"; verify(out).println(withStorageTypeHeader);
