Author: stack
Date: Sun Jul 28 05:34:50 2013
New Revision: 1507764

URL: http://svn.apache.org/r1507764
Log:
HBASE-9067 Temporarily disable a few tests in TestReplicationTrackerZKImpl

Modified:
    
hbase/trunk/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationTrackerZKImpl.java

Modified: 
hbase/trunk/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationTrackerZKImpl.java
URL: 
http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationTrackerZKImpl.java?rev=1507764&r1=1507763&r2=1507764&view=diff
==============================================================================
--- 
hbase/trunk/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationTrackerZKImpl.java
 (original)
+++ 
hbase/trunk/hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationTrackerZKImpl.java
 Sun Jul 28 05:34:50 2013
@@ -37,6 +37,7 @@ import org.apache.hadoop.hbase.zookeeper
 import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
 import org.junit.AfterClass;
 import org.junit.Test;
+import org.junit.Ignore;
 
 import static org.junit.Assert.*;
 
@@ -140,7 +141,7 @@ public class TestReplicationTrackerZKImp
     assertEquals("hostname2.example.org:1234", rsRemovedData);
   }
 
-  @Test(timeout = 30000)
+  @Ignore ("Flakey") @Test(timeout = 30000)
   public void testPeerRemovedEvent() throws Exception {
     rp.addPeer("5", utility.getClusterKey());
     rt.registerListener(new DummyReplicationListener());
@@ -152,7 +153,7 @@ public class TestReplicationTrackerZKImp
     assertEquals("5", peerRemovedData);
   }
 
-  @Test(timeout = 30000)
+  @Ignore ("Flakey") @Test(timeout = 30000)
   public void testPeerListChangedEvent() throws Exception {
     // add a peer
     rp.addPeer("5", utility.getClusterKey());


Reply via email to