HBASE-14486 Disable TestRegionPlacement, a flakey test for an unfinished feature
This commit is contained in:
parent
9557bc7dfa
commit
8db7a6eb07
|
@ -67,6 +67,7 @@ import org.apache.hadoop.hbase.util.Pair;
|
||||||
import org.apache.zookeeper.KeeperException;
|
import org.apache.zookeeper.KeeperException;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.experimental.categories.Category;
|
import org.junit.experimental.categories.Category;
|
||||||
|
|
||||||
|
@ -102,7 +103,7 @@ public class TestRegionPlacement {
|
||||||
TEST_UTIL.shutdownMiniCluster();
|
TEST_UTIL.shutdownMiniCluster();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Ignore ("Test for unfinished feature") @Test
|
||||||
public void testRegionPlacement() throws Exception {
|
public void testRegionPlacement() throws Exception {
|
||||||
String tableStr = "testRegionAssignment";
|
String tableStr = "testRegionAssignment";
|
||||||
TableName table = TableName.valueOf(tableStr);
|
TableName table = TableName.valueOf(tableStr);
|
||||||
|
@ -247,7 +248,7 @@ public class TestRegionPlacement {
|
||||||
/**
|
/**
|
||||||
* Used to test the correctness of this class.
|
* Used to test the correctness of this class.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Ignore ("Test for unfinished feature") @Test
|
||||||
public void testRandomizedMatrix() {
|
public void testRandomizedMatrix() {
|
||||||
int rows = 100;
|
int rows = 100;
|
||||||
int cols = 100;
|
int cols = 100;
|
||||||
|
|
Loading…
Reference in New Issue