HDFS-3719. Re-enable append-related tests in TestFileConcurrentReader. Contributed by Andrew Wang.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1369848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
72789336b2
commit
294b514596
|
@ -554,6 +554,9 @@ Branch-2 ( Unreleased changes )
|
||||||
HDFS-3756. DelegationTokenFetcher creates 2 HTTP connections, the second
|
HDFS-3756. DelegationTokenFetcher creates 2 HTTP connections, the second
|
||||||
one not properly configured. (tucu)
|
one not properly configured. (tucu)
|
||||||
|
|
||||||
|
HDFS-3719. Re-enable append-related tests in TestFileConcurrentReader.
|
||||||
|
(Andrew Wang via atm)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-3042 SUBTASKS
|
BREAKDOWN OF HDFS-3042 SUBTASKS
|
||||||
|
|
||||||
HDFS-2185. HDFS portion of ZK-based FailoverController (todd)
|
HDFS-2185. HDFS portion of ZK-based FailoverController (todd)
|
||||||
|
|
|
@ -288,10 +288,8 @@ public class TestFileConcurrentReader {
|
||||||
runTestUnfinishedBlockCRCError(true, SyncType.SYNC, SMALL_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(true, SyncType.SYNC, SMALL_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
// fails due to issue w/append, disable
|
|
||||||
@Ignore
|
|
||||||
@Test
|
@Test
|
||||||
public void _testUnfinishedBlockCRCErrorTransferToAppend()
|
public void testUnfinishedBlockCRCErrorTransferToAppend()
|
||||||
throws IOException {
|
throws IOException {
|
||||||
runTestUnfinishedBlockCRCError(true, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(true, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
@ -307,10 +305,8 @@ public class TestFileConcurrentReader {
|
||||||
runTestUnfinishedBlockCRCError(false, SyncType.SYNC, SMALL_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(false, SyncType.SYNC, SMALL_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
// fails due to issue w/append, disable
|
|
||||||
@Ignore
|
|
||||||
@Test
|
@Test
|
||||||
public void _testUnfinishedBlockCRCErrorNormalTransferAppend()
|
public void testUnfinishedBlockCRCErrorNormalTransferAppend()
|
||||||
throws IOException {
|
throws IOException {
|
||||||
runTestUnfinishedBlockCRCError(false, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
runTestUnfinishedBlockCRCError(false, SyncType.APPEND, DEFAULT_WRITE_SIZE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue