HDFS-15564. Add Test annotation for TestPersistBlocks#testRestartDfsWithSync. Contributed by Fei Hui.
(cherry picked from commit 2a6fdcedeb
)
This commit is contained in:
parent
0c82eb0324
commit
a2bc0dcd21
|
@ -76,14 +76,15 @@ public class TestPersistBlocks {
|
|||
/** check if DFS remains in proper condition after a restart
|
||||
**/
|
||||
@Test
|
||||
public void TestRestartDfsWithFlush() throws Exception {
|
||||
public void testRestartDfsWithFlush() throws Exception {
|
||||
testRestartDfs(true);
|
||||
}
|
||||
|
||||
|
||||
/** check if DFS remains in proper condition after a restart
|
||||
**/
|
||||
public void TestRestartDfsWithSync() throws Exception {
|
||||
@Test
|
||||
public void testRestartDfsWithSync() throws Exception {
|
||||
testRestartDfs(false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue