HBASE-19882 Promote TestProcedureManager to MediumTests

This commit is contained in:
zhangduo 2018-01-29 14:49:39 +08:00
parent a36e9c76c2
commit 5b0d7dc45b
1 changed files with 3 additions and 7 deletions

View File

@ -21,23 +21,19 @@ import static org.junit.Assert.assertArrayEquals;
import java.io.IOException; import java.io.IOException;
import java.util.HashMap; import java.util.HashMap;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseTestingUtility; import org.apache.hadoop.hbase.HBaseTestingUtility;
import org.apache.hadoop.hbase.testclassification.MasterTests;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.apache.hadoop.hbase.client.Admin; import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.testclassification.MasterTests;
import org.apache.hadoop.hbase.testclassification.MediumTests;
import org.junit.AfterClass; import org.junit.AfterClass;
import org.junit.BeforeClass; import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
import org.junit.experimental.categories.Category; import org.junit.experimental.categories.Category;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Category({MasterTests.class, SmallTests.class}) @Category({MasterTests.class, MediumTests.class})
public class TestProcedureManager { public class TestProcedureManager {
private static final Logger LOG = LoggerFactory.getLogger(TestProcedureManager.class);
private static final int NUM_RS = 2; private static final int NUM_RS = 2;
private static HBaseTestingUtility util = new HBaseTestingUtility(); private static HBaseTestingUtility util = new HBaseTestingUtility();