HBASE-8939 Hanging unit tests; DEBUG

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1504242 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-07-17 19:26:32 +00:00
parent 549a152a38
commit 1356d84fcf

View File

@ -88,7 +88,7 @@ public class TestAssignmentManagerOnCluster {
/** /**
* This tests region assignment * This tests region assignment
*/ */
@Test @Test (timeout=60000)
public void testAssignRegion() throws Exception { public void testAssignRegion() throws Exception {
String table = "testAssignRegion"; String table = "testAssignRegion";
try { try {
@ -116,7 +116,7 @@ public class TestAssignmentManagerOnCluster {
/** /**
* This tests region assignment on a simulated restarted server * This tests region assignment on a simulated restarted server
*/ */
@Test @Test (timeout=60000)
public void testAssignRegionOnRestartedServer() throws Exception { public void testAssignRegionOnRestartedServer() throws Exception {
String table = "testAssignRegionOnRestartedServer"; String table = "testAssignRegionOnRestartedServer";
ServerName deadServer = null; ServerName deadServer = null;
@ -174,7 +174,7 @@ public class TestAssignmentManagerOnCluster {
/** /**
* This tests offlining a region * This tests offlining a region
*/ */
@Test @Test (timeout=60000)
public void testOfflineRegion() throws Exception { public void testOfflineRegion() throws Exception {
String table = "testOfflineRegion"; String table = "testOfflineRegion";
try { try {
@ -326,7 +326,7 @@ public class TestAssignmentManagerOnCluster {
/** /**
* This tests region close failed * This tests region close failed
*/ */
@Test (timeout=30000) @Test (timeout=60000)
public void testCloseFailed() throws Exception { public void testCloseFailed() throws Exception {
String table = "testCloseFailed"; String table = "testCloseFailed";
try { try {
@ -370,7 +370,7 @@ public class TestAssignmentManagerOnCluster {
/** /**
* This tests region open failed * This tests region open failed
*/ */
@Test (timeout=30000) @Test (timeout=60000)
public void testOpenFailed() throws Exception { public void testOpenFailed() throws Exception {
String table = "testOpenFailed"; String table = "testOpenFailed";
try { try {
@ -409,7 +409,7 @@ public class TestAssignmentManagerOnCluster {
/** /**
* This tests region open failure which is not recoverable * This tests region open failure which is not recoverable
*/ */
@Test (timeout=30000) @Test (timeout=60000)
public void testOpenFailedUnrecoverable() throws Exception { public void testOpenFailedUnrecoverable() throws Exception {
String table = "testOpenFailedUnrecoverable"; String table = "testOpenFailedUnrecoverable";
try { try {
@ -450,7 +450,7 @@ public class TestAssignmentManagerOnCluster {
} }
} }
@Test @Test (timeout=60000)
public void testSSHWhenDisablingTableRegionsInOpeningOrPendingOpenState() throws Exception { public void testSSHWhenDisablingTableRegionsInOpeningOrPendingOpenState() throws Exception {
final String table = "testSSHWhenDisablingTableRegionsInOpeningOrPendingOpenState"; final String table = "testSSHWhenDisablingTableRegionsInOpeningOrPendingOpenState";
AssignmentManager am = TEST_UTIL.getHBaseCluster().getMaster().getAssignmentManager(); AssignmentManager am = TEST_UTIL.getHBaseCluster().getMaster().getAssignmentManager();