HBASE-18355 Enable export snapshot tests that were disabled by Proc-V2 AM in HBASE-14614

This commit is contained in:
Huaxiang Sun 2017-10-13 14:37:35 -07:00 committed by huaxiangsun
parent 77bfe05503
commit 7a25ed6d7c
5 changed files with 7 additions and 4 deletions

View File

@ -298,6 +298,13 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- Hadoop needs Netty 3.x at test scope for the minicluster -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>${netty.hadoop.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<!-- Skip the tests in this module -->

View File

@ -64,7 +64,6 @@ import org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.Snapshot
/**
* Test Export Snapshot Tool
*/
@Ignore
@Category({VerySlowMapReduceTests.class, LargeTests.class})
public class TestExportSnapshot {
@Rule public final TestRule timeout = CategoryBasedTimeout.builder().

View File

@ -32,7 +32,6 @@ import org.junit.experimental.categories.Category;
/**
* Test Export Snapshot Tool
*/
@Ignore
@Category({VerySlowRegionServerTests.class, LargeTests.class})
public class TestMobExportSnapshot extends TestExportSnapshot {

View File

@ -33,7 +33,6 @@ import org.junit.experimental.categories.Category;
/**
* Reruns TestMobExportSnapshot using MobExportSnapshot in secure mode.
*/
@Ignore
@Category({VerySlowRegionServerTests.class, LargeTests.class})
public class TestMobSecureExportSnapshot extends TestMobExportSnapshot {
@BeforeClass

View File

@ -36,7 +36,6 @@ import org.junit.rules.TestRule;
/**
* Reruns TestExportSnapshot using ExportSnapshot in secure mode.
*/
@Ignore
@Category({VerySlowRegionServerTests.class, LargeTests.class})
public class TestSecureExportSnapshot extends TestExportSnapshot {
@Rule public final TestRule timeout = CategoryBasedTimeout.builder().