You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2015/05/21 22:57:58 UTC

hbase git commit: HBASE-13741 Disable TestRegionObserverInterface#testRecovery and testLegacyRecovery (Stephen Jiang)

Repository: hbase
Updated Branches:
  refs/heads/branch-1 a9e2f4cf3 -> 774bb5677


HBASE-13741 Disable TestRegionObserverInterface#testRecovery and testLegacyRecovery (Stephen Jiang)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/774bb567
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/774bb567
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/774bb567

Branch: refs/heads/branch-1
Commit: 774bb5677e1b5b707130a7d2a16ab05b26c0d1ad
Parents: a9e2f4c
Author: tedyu <yu...@gmail.com>
Authored: Thu May 21 13:57:52 2015 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Thu May 21 13:57:52 2015 -0700

----------------------------------------------------------------------
 .../hadoop/hbase/coprocessor/TestRegionObserverInterface.java     | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/774bb567/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestRegionObserverInterface.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestRegionObserverInterface.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestRegionObserverInterface.java
index 4157c5f..cf41604 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestRegionObserverInterface.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestRegionObserverInterface.java
@@ -79,6 +79,7 @@ import org.apache.hadoop.hbase.util.JVMClusterUtil;
 import org.apache.hadoop.hbase.util.Threads;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
@@ -588,6 +589,7 @@ public class TestRegionObserverInterface {
     }
   }
 
+  @Ignore // TODO: HBASE-13391 to fix flaky test
   @Test (timeout=300000)
   public void testRecovery() throws Exception {
     LOG.info(TestRegionObserverInterface.class.getName() +".testRecovery");
@@ -638,6 +640,7 @@ public class TestRegionObserverInterface {
     }
   }
 
+  @Ignore // TODO: HBASE-13391 to fix flaky test
   @Test (timeout=300000)
   public void testLegacyRecovery() throws Exception {
     LOG.info(TestRegionObserverInterface.class.getName() +".testLegacyRecovery");