From 8290139d4b6babe2cdb53c98fcbb6369486aa22f Mon Sep 17 00:00:00 2001 From: stack Date: Thu, 24 Sep 2015 15:55:38 -0700 Subject: [PATCH] HBASE-14486 Disable TestRegionPlacement, a flakey test for an unfinished feature --- .../org/apache/hadoop/hbase/master/TestRegionPlacement.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestRegionPlacement.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestRegionPlacement.java index b569642ca6b..a2cb35425ad 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestRegionPlacement.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestRegionPlacement.java @@ -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;