Kousuke Saruta created HADOOP-10582:
---------------------------------------
Summary: TestFsShellCopy doesn't test which we expect
Key: HADOOP-10582
URL: https://issues.apache.org/jira/browse/HADOOP-10582
Project: Hadoop Common
Issue Type: Bug
Components: fs
Affects Versions: 3.0.0
Reporter: Kousuke Saruta
Priority: Minor
In TestFsShellCopy#prepTest, there is a following code.
{code}
final Path dstPath = new Path("path");
final Path childPath = new Path(dstPath, "childPath");
...
// copy to non-existent subdir
prepPut(childPath, false, false);
checkPut(1, srcPath, dstPath, useWindowsPath);
{code}
The code expect to test the case when we put a file to non-exsistent directory.
But the code delete childPath and then copy to its parent directory (dstPath).
--
This message was sent by Atlassian JIRA
(v6.2#6252)