From a9cf353c7581565394eaf2e96c9f99bd829c98d8 Mon Sep 17 00:00:00 2001 From: tedyu Date: Thu, 21 May 2015 13:59:09 -0700 Subject: [PATCH] HBASE-13741 Disable TestRegionObserverInterface#testRecovery and testLegacyRecovery (Stephen Jiang) --- .../hadoop/hbase/coprocessor/TestRegionObserverInterface.java | 3 +++ 1 file changed, 3 insertions(+) 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 437801c9062..d0e561fa0f8 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 @@ -80,6 +80,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; @@ -589,6 +590,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"); @@ -639,6 +641,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");