You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2013/02/12 19:17:35 UTC

svn commit: r1445294 - /hbase/trunk/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestRebalanceAndKillServersTargeted.java

Author: stack
Date: Tue Feb 12 18:17:34 2013
New Revision: 1445294

URL: http://svn.apache.org/r1445294
Log:
HBASE-7830 Disable IntegrationTestRebalanceAndKillServersTargeted temporarily

Modified:
    hbase/trunk/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestRebalanceAndKillServersTargeted.java

Modified: hbase/trunk/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestRebalanceAndKillServersTargeted.java
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestRebalanceAndKillServersTargeted.java?rev=1445294&r1=1445293&r2=1445294&view=diff
==============================================================================
--- hbase/trunk/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestRebalanceAndKillServersTargeted.java (original)
+++ hbase/trunk/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestRebalanceAndKillServersTargeted.java Tue Feb 12 18:17:34 2013
@@ -34,6 +34,7 @@ import org.apache.hadoop.hbase.util.Chao
 import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
+import org.junit.Ignore;
 import org.junit.experimental.categories.Category;
 
 /**
@@ -42,7 +43,7 @@ import org.junit.experimental.categories
  * killing some of these servers, and triggering balancer.
  * It's configured using a set of constants on top, which cover this scenario and are
  * reasonable for minicluster. See constants if you want to tweak the test.
- * You can configure how long the test should run by using 
+ * You can configure how long the test should run by using
  * "hbase.IntegrationTestRebalanceAndKillServersTargeted.runtime" configuration parameter,
  * which is probably most useful on cluster.
  */
@@ -116,7 +117,8 @@ public class IntegrationTestRebalanceAnd
     super.tearDown();
   }
 
-  @Test
+  // Disabled until we fix hbase-7520
+  @Ignore @Test
   public void testDataIngest() throws Exception {
     runIngestTest(DEFAULT_RUN_TIME, 2500, 10, 100, 20);
   }