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 2010/10/12 19:55:11 UTC

svn commit: r1021860 - /hbase/trunk/src/test/java/org/apache/hadoop/hbase/TestMultiClusters.java

Author: stack
Date: Tue Oct 12 17:55:11 2010
New Revision: 1021860

URL: http://svn.apache.org/viewvc?rev=1021860&view=rev
Log:
HBASE-3104 Disable TestMultiClusters; it doesn't really test anything and HBaseTestingUtility needs more work for this to pass anyways

Modified:
    hbase/trunk/src/test/java/org/apache/hadoop/hbase/TestMultiClusters.java

Modified: hbase/trunk/src/test/java/org/apache/hadoop/hbase/TestMultiClusters.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/test/java/org/apache/hadoop/hbase/TestMultiClusters.java?rev=1021860&r1=1021859&r2=1021860&view=diff
==============================================================================
--- hbase/trunk/src/test/java/org/apache/hadoop/hbase/TestMultiClusters.java (original)
+++ hbase/trunk/src/test/java/org/apache/hadoop/hbase/TestMultiClusters.java Tue Oct 12 17:55:11 2010
@@ -25,6 +25,7 @@ import org.apache.hadoop.hbase.client.HT
 import org.apache.hadoop.hbase.client.Put;
 import org.apache.hadoop.hbase.client.Result;
 import org.apache.hadoop.hbase.util.Bytes;
+import org.junit.Ignore;
 import org.junit.Test;
 
 import static org.junit.Assert.assertEquals;
@@ -46,7 +47,10 @@ public class TestMultiClusters {
    * what we insert in one place doesn't end up in the other.
    * @throws Exception
    */
-  @Test (timeout=100000)
+  // Ignore this test.  HTU needs work so can have two clusters running in
+  // the one test.  Each HTU minicluster needs to run as a different user so
+  // the shutdown will run cleanly.  St.Ack 20101012
+  @Ignore @Test (timeout=100000)
   public void twoClusters() throws Exception{
     Configuration conf1 = HBaseConfiguration.create();
     // Different path for different clusters
@@ -84,4 +88,4 @@ public class TestMultiClusters {
       utility1.shutdownMiniZKCluster();
     }
   }
-}
+}
\ No newline at end of file