From 036f579661de7b1d870d9007cce66a55c8a94a91 Mon Sep 17 00:00:00 2001 From: Apekshit Sharma Date: Mon, 10 Oct 2016 12:12:09 -0700 Subject: [PATCH] HBASE-16775 Disable TestExportSnapshot#testExportRetry and testExportFailure until they are fixed. Change-Id: I435af5f54458fe84ea3cbea556242e00a3ead877 --- .../test/java/org/apache/hadoop/hbase/snapshot/TestExportSnapshot.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/snapshot/TestExportSnapshot.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/snapshot/TestExportSnapshot.java index 7c81334443d405aad9b6bf8a265a9a711c59c393..1ef8a75c1538bbf43fb724a306f753673fc8cac3 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/snapshot/TestExportSnapshot.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/snapshot/TestExportSnapshot.java @@ -52,6 +52,7 @@ import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.experimental.categories.Category; @@ -242,6 +243,7 @@ public class TestExportSnapshot { /** * Check that ExportSnapshot will return a failure if something fails. */ + @Ignore("needs fixing. HBASE-16775.") @Test public void testExportFailure() throws Exception { assertEquals(1, runExportAndInjectFailures(snapshotName, false)); @@ -250,6 +252,7 @@ public class TestExportSnapshot { /** * Check that ExportSnapshot will succede if something fails but the retry succede. */ + @Ignore("needs fixing. HBASE-16775.") @Test public void testExportRetry() throws Exception { assertEquals(0, runExportAndInjectFailures(snapshotName, true)); -- 2.3.2 (Apple Git-55)