HDFS-8844. TestHDFSCLI does not cleanup the test directory (Masatake Iwasaki via Colin P. McCabe)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/c95993cb Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/c95993cb Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/c95993cb Branch: refs/heads/HADOOP-12111 Commit: c95993cbaf51e2925ea9b1b95cf4f0d879e66489 Parents: 9a08999 Author: Colin Patrick Mccabe <[email protected]> Authored: Tue Aug 4 12:22:06 2015 -0700 Committer: Colin Patrick Mccabe <[email protected]> Committed: Tue Aug 4 12:22:06 2015 -0700 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../hadoop-hdfs/src/test/resources/testHDFSConf.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/c95993cb/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index eeefd84..f093eea 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -1113,6 +1113,9 @@ Release 2.8.0 - UNRELEASED pool to be scanned but there are suspicious blocks. (Colin Patrick McCabe via yliu) + HDFS-8844. TestHDFSCLI does not cleanup the test directory (Masatake + Iwasaki via Colin P. McCabe) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/c95993cb/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml b/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml index 56713f5..4e25d09 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml @@ -16525,7 +16525,7 @@ <command>-cat CLITEST_DATA/file</command> </test-commands> <cleanup-commands> - <command>-fs NAMENODE -rm -r /user/USERNAME</command> + <command>-fs NAMENODE -rm -r /user/USERNAME CLITEST_DATA/file</command> <command>rm data</command> </cleanup-commands> <comparators>
