HADOOP-10582. Fix the test case for copying to non-existent dir in TestFsShellCopy. Contributed by Kousuke Saruta.

(cherry picked from commit a46506d99c)
This commit is contained in:
Akira Ajisaka 2015-05-18 16:31:41 +09:00
parent b26d99c394
commit 8969a5d45a
2 changed files with 6 additions and 3 deletions

View File

@ -230,6 +230,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-11988. Fix typo in the document for hadoop fs -find.
(Kengo Seki via aajisaka)
HADOOP-10582. Fix the test case for copying to non-existent dir in
TestFsShellCopy. (Kousuke Saruta via aajisaka)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -177,9 +177,9 @@ private void checkPut(Path srcPath, Path targetDir, boolean useWindowsPath)
checkPut(0, srcPath, dstPath, useWindowsPath);
}
// copy to non-existent subdir
prepPut(childPath, false, false);
checkPut(1, srcPath, dstPath, useWindowsPath);
// copy to non-existent dir
prepPut(dstPath, false, false);
checkPut(1, srcPath, childPath, useWindowsPath);
// copy into dir, then with another name
prepPut(dstPath, true, true);