Repository: hbase Updated Branches: refs/heads/branch-1.1 10024d889 -> 86e2c3b72
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/86e2c3b7 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/86e2c3b7 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/86e2c3b7 Branch: refs/heads/branch-1.1 Commit: 86e2c3b72fb5d96bfab9cde90292fc1f650b6900 Parents: 10024d8 Author: tedyu <[email protected]> Authored: Thu May 21 13:58:33 2015 -0700 Committer: tedyu <[email protected]> Committed: Thu May 21 13:58:33 2015 -0700 ---------------------------------------------------------------------- .../hadoop/hbase/coprocessor/TestRegionObserverInterface.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/86e2c3b7/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 11691d7..3440628 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");
