HDFS-5103. Merging change r1514576 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1514577 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ce6ba40569
commit
1f0d7631d5
|
@ -122,6 +122,8 @@ Release 2.1.1-beta - UNRELEASED
|
|||
HDFS-5100. TestNamenodeRetryCache fails on Windows due to incorrect cleanup.
|
||||
(Chuan Liu via cnauroth)
|
||||
|
||||
HDFS-5103. TestDirectoryScanner fails on Windows. (Chuan Liu via cnauroth)
|
||||
|
||||
Release 2.1.0-beta - 2013-08-22
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -394,12 +394,12 @@ public class TestDirectoryScanner {
|
|||
|
||||
@Override
|
||||
public String getBasePath() {
|
||||
return "/base";
|
||||
return (new File("/base")).getAbsolutePath();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPath(String bpid) throws IOException {
|
||||
return "/base/current/" + bpid;
|
||||
return (new File("/base/current/" + bpid)).getAbsolutePath();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -416,8 +416,6 @@ public class TestDirectoryScanner {
|
|||
|
||||
void testScanInfoObject(long blockId, File blockFile, File metaFile)
|
||||
throws Exception {
|
||||
assertEquals("/base/current/" + BPID_1 + "/finalized",
|
||||
TEST_VOLUME.getFinalizedDir(BPID_1).getAbsolutePath());
|
||||
DirectoryScanner.ScanInfo scanInfo =
|
||||
new DirectoryScanner.ScanInfo(blockId, blockFile, metaFile, TEST_VOLUME);
|
||||
assertEquals(blockId, scanInfo.getBlockId());
|
||||
|
|
Loading…
Reference in New Issue