HADOOP-8994. TestDFSShell creates file named "noFileHere", making further tests hard to understand (Andy Isaacson via daryn)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1403714 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daryn Sharp 2012-10-30 14:21:00 +00:00
parent 7604a276a7
commit deef03c5d6
2 changed files with 6 additions and 3 deletions

View File

@ -525,6 +525,9 @@ Release 2.0.3-alpha - Unreleased
HDFS-4127. Log message is not correct in case of short of replica.
(Junping Du via suresh)
HADOOP-8994. TestDFSShell creates file named "noFileHere", making further
tests hard to understand (Andy Isaacson via daryn)
Release 2.0.2-alpha - 2012-09-07
INCOMPATIBLE CHANGES

View File

@ -1145,7 +1145,7 @@ public class TestDFSShell {
args = new String[2];
args[0] = "-touchz";
args[1] = "/test/mkdirs/noFileHere";
args[1] = "/test/mkdirs/isFileHere";
val = -1;
try {
val = shell.run(args);
@ -1157,7 +1157,7 @@ public class TestDFSShell {
args = new String[2];
args[0] = "-touchz";
args[1] = "/test/mkdirs/thisDirNotExists/noFileHere";
args[1] = "/test/mkdirs/thisDirNotExists/isFileHere";
val = -1;
try {
val = shell.run(args);
@ -1171,7 +1171,7 @@ public class TestDFSShell {
args = new String[3];
args[0] = "-test";
args[1] = "-e";
args[2] = "/test/mkdirs/noFileHere";
args[2] = "/test/mkdirs/isFileHere";
val = -1;
try {
val = shell.run(args);