svn merge -c 1301665 from trunk for HDFS-3104.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1301666 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2012-03-16 17:49:23 +00:00
parent ca252c931d
commit debf136f0d
2 changed files with 38 additions and 0 deletions

View File

@ -566,6 +566,8 @@ Release 0.23.2 - UNRELEASED
HDFS-3098. Update and add tests for HADOOP-8173. (Daryn Sharp via szetszwo) HDFS-3098. Update and add tests for HADOOP-8173. (Daryn Sharp via szetszwo)
HDFS-3104. Add tests for HADOOP-8175. (Daryn Sharp via szetszwo)
OPTIMIZATIONS OPTIMIZATIONS
HDFS-3024. Improve performance of stringification in addStoredBlock (todd) HDFS-3024. Improve performance of stringification in addStoredBlock (todd)

View File

@ -5720,6 +5720,42 @@
</comparators> </comparators>
</test> </test>
<test> <!-- TESTED -->
<description>mkdir: Test recreate of existing directory fails</description>
<test-commands>
<command>-fs NAMENODE -rm -r -f dir0</command>
<command>-fs NAMENODE -mkdir dir0/dir1</command>
<command>-fs NAMENODE -mkdir dir0/dir1</command>
</test-commands>
<cleanup-commands>
<command>-fs NAMENODE -rm -r dir0</command>
</cleanup-commands>
<comparators>
<comparator>
<type>RegexpComparator</type>
<expected-output>mkdir: `dir0/dir1': File exists</expected-output>
</comparator>
</comparators>
</test>
<test> <!-- TESTED -->
<description>mkdir: Test recreate of existing directory with -p succeeds</description>
<test-commands>
<command>-fs NAMENODE -rm -r -f dir0</command>
<command>-fs NAMENODE -mkdir dir0/dir1</command>
<command>-fs NAMENODE -mkdir -p dir0/dir1</command>
</test-commands>
<cleanup-commands>
<command>-fs NAMENODE -rm -r dir0</command>
</cleanup-commands>
<comparators>
<comparator>
<type>ExactComparator</type>
<expected-output></expected-output>
</comparator>
</comparators>
</test>
<!--Tests for setrep--> <!--Tests for setrep-->
<test> <!-- TESTED --> <test> <!-- TESTED -->
<description>setrep: existent file (absolute path)</description> <description>setrep: existent file (absolute path)</description>