HBASE-18355 Enable export snapshot tests that were disabled by Proc-V2 AM in HBASE-14614
This commit is contained in:
parent
77bfe05503
commit
7a25ed6d7c
|
@ -298,6 +298,13 @@
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</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>
|
</dependencies>
|
||||||
<profiles>
|
<profiles>
|
||||||
<!-- Skip the tests in this module -->
|
<!-- Skip the tests in this module -->
|
||||||
|
|
|
@ -64,7 +64,6 @@ import org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.Snapshot
|
||||||
/**
|
/**
|
||||||
* Test Export Snapshot Tool
|
* Test Export Snapshot Tool
|
||||||
*/
|
*/
|
||||||
@Ignore
|
|
||||||
@Category({VerySlowMapReduceTests.class, LargeTests.class})
|
@Category({VerySlowMapReduceTests.class, LargeTests.class})
|
||||||
public class TestExportSnapshot {
|
public class TestExportSnapshot {
|
||||||
@Rule public final TestRule timeout = CategoryBasedTimeout.builder().
|
@Rule public final TestRule timeout = CategoryBasedTimeout.builder().
|
||||||
|
|
|
@ -32,7 +32,6 @@ import org.junit.experimental.categories.Category;
|
||||||
/**
|
/**
|
||||||
* Test Export Snapshot Tool
|
* Test Export Snapshot Tool
|
||||||
*/
|
*/
|
||||||
@Ignore
|
|
||||||
@Category({VerySlowRegionServerTests.class, LargeTests.class})
|
@Category({VerySlowRegionServerTests.class, LargeTests.class})
|
||||||
public class TestMobExportSnapshot extends TestExportSnapshot {
|
public class TestMobExportSnapshot extends TestExportSnapshot {
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,6 @@ import org.junit.experimental.categories.Category;
|
||||||
/**
|
/**
|
||||||
* Reruns TestMobExportSnapshot using MobExportSnapshot in secure mode.
|
* Reruns TestMobExportSnapshot using MobExportSnapshot in secure mode.
|
||||||
*/
|
*/
|
||||||
@Ignore
|
|
||||||
@Category({VerySlowRegionServerTests.class, LargeTests.class})
|
@Category({VerySlowRegionServerTests.class, LargeTests.class})
|
||||||
public class TestMobSecureExportSnapshot extends TestMobExportSnapshot {
|
public class TestMobSecureExportSnapshot extends TestMobExportSnapshot {
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
|
|
|
@ -36,7 +36,6 @@ import org.junit.rules.TestRule;
|
||||||
/**
|
/**
|
||||||
* Reruns TestExportSnapshot using ExportSnapshot in secure mode.
|
* Reruns TestExportSnapshot using ExportSnapshot in secure mode.
|
||||||
*/
|
*/
|
||||||
@Ignore
|
|
||||||
@Category({VerySlowRegionServerTests.class, LargeTests.class})
|
@Category({VerySlowRegionServerTests.class, LargeTests.class})
|
||||||
public class TestSecureExportSnapshot extends TestExportSnapshot {
|
public class TestSecureExportSnapshot extends TestExportSnapshot {
|
||||||
@Rule public final TestRule timeout = CategoryBasedTimeout.builder().
|
@Rule public final TestRule timeout = CategoryBasedTimeout.builder().
|
||||||
|
|
Loading…
Reference in New Issue