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