HDFS-3985. Add timeouts to TestMulitipleNNDataBlockScanner. Contributed by Todd Lipcon
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1398874 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e0db1e9e10
commit
b245adb163
|
@ -452,6 +452,8 @@ Release 2.0.3-alpha - Unreleased
|
|||
HDFS-4058. DirectoryScanner may fail with IOOB if the directory
|
||||
scanning threads return out of volume order. (eli)
|
||||
|
||||
HDFS-3985. Add timeouts to TestMulitipleNNDataBlockScanner. (todd via eli)
|
||||
|
||||
Release 2.0.2-alpha - 2012-09-07
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -74,7 +74,7 @@ public class TestMultipleNNDataBlockScanner {
|
|||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(timeout=120000)
|
||||
public void testDataBlockScanner() throws IOException, InterruptedException {
|
||||
setUp();
|
||||
try {
|
||||
|
@ -97,7 +97,7 @@ public class TestMultipleNNDataBlockScanner {
|
|||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(timeout=120000)
|
||||
public void testBlockScannerAfterRefresh() throws IOException,
|
||||
InterruptedException {
|
||||
setUp();
|
||||
|
@ -149,7 +149,7 @@ public class TestMultipleNNDataBlockScanner {
|
|||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(timeout=120000)
|
||||
public void testBlockScannerAfterRestart() throws IOException,
|
||||
InterruptedException {
|
||||
setUp();
|
||||
|
@ -176,7 +176,7 @@ public class TestMultipleNNDataBlockScanner {
|
|||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
@Test(timeout=120000)
|
||||
public void test2NNBlockRescanInterval() throws IOException {
|
||||
((Log4JLogger)BlockPoolSliceScanner.LOG).getLogger().setLevel(Level.ALL);
|
||||
Configuration conf = new HdfsConfiguration();
|
||||
|
@ -206,7 +206,7 @@ public class TestMultipleNNDataBlockScanner {
|
|||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
@Test
|
||||
@Test(timeout=120000)
|
||||
public void testBlockRescanInterval() throws IOException {
|
||||
((Log4JLogger)BlockPoolSliceScanner.LOG).getLogger().setLevel(Level.ALL);
|
||||
Configuration conf = new HdfsConfiguration();
|
||||
|
|
Loading…
Reference in New Issue