HBASE-19989 Addendum - temp override for tests to be added later for HBASE-20001

Signed-off-by: Andrew Purtell <apurtell@apache.org>
This commit is contained in:
Ben Lau 2018-02-27 16:53:42 -08:00 committed by Andrew Purtell
parent 40e0ee331c
commit 27f803f320
2 changed files with 14 additions and 1 deletions

View File

@ -21,6 +21,7 @@ package org.apache.hadoop.hbase.regionserver;
import org.apache.hadoop.hbase.testclassification.LargeTests;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
/**
@ -42,4 +43,10 @@ public class TestZKLessMergeOnCluster extends TestRegionMergeTransactionOnCluste
public static void afterAllTests() throws Exception {
TestRegionMergeTransactionOnCluster.afterAllTests();
}
@Test (timeout = 60000)
@Override
public void testMergeIsRolledBackOnMergeFailure() throws Exception {
// TODO: This test will be added later
}
}

View File

@ -21,6 +21,7 @@ package org.apache.hadoop.hbase.regionserver;
import org.apache.hadoop.hbase.testclassification.LargeTests;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
/**
@ -41,5 +42,10 @@ public class TestZKLessSplitOnCluster extends TestSplitTransactionOnCluster {
public static void after() throws Exception {
TestSplitTransactionOnCluster.after();
}
@Override
@Test (timeout = 60000)
public void testSplitIsRolledBackOnSplitFailure() throws Exception {
// TODO: This test will be added later
}
}