Index: hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestBulkDeleteProtocol.java =================================================================== --- hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestBulkDeleteProtocol.java (revision 1453717) +++ hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestBulkDeleteProtocol.java (working copy) @@ -65,19 +65,19 @@ private static final byte[] QUALIFIER3 = Bytes.toBytes("c3"); private static final HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility(); - @Ignore @BeforeClass + // @Ignore @BeforeClass public static void setupBeforeClass() throws Exception { TEST_UTIL.getConfiguration().set(CoprocessorHost.USER_REGION_COPROCESSOR_CONF_KEY, BulkDeleteEndpoint.class.getName()); TEST_UTIL.startMiniCluster(2); } - @Ignore @AfterClass + // @Ignore @AfterClass public static void tearDownAfterClass() throws Exception { TEST_UTIL.shutdownMiniCluster(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteEndpoint() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteEndpoint"); HTable ht = createTable(tableName); @@ -99,7 +99,7 @@ ht.close(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteEndpointWhenRowBatchSizeLessThanRowsToDeleteFromARegion() throws Throwable { byte[] tableName = Bytes @@ -154,7 +154,7 @@ return noOfDeletedRows; } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteWithConditionBasedDelete() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteWithConditionBasedDelete"); HTable ht = createTable(tableName); @@ -184,7 +184,7 @@ ht.close(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteColumn() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteColumn"); HTable ht = createTable(tableName); @@ -213,7 +213,7 @@ ht.close(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteFamily() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteFamily"); HTableDescriptor htd = new HTableDescriptor(tableName); @@ -244,7 +244,7 @@ ht.close(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteColumnVersion() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteColumnVersion"); HTable ht = createTable(tableName); @@ -292,7 +292,7 @@ ht.close(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteColumnVersionBasedOnTS() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteColumnVersionBasedOnTS"); HTable ht = createTable(tableName); @@ -339,7 +339,7 @@ ht.close(); } - @Ignore @Test + // @Ignore @Test public void testBulkDeleteWithNumberOfVersions() throws Throwable { byte[] tableName = Bytes.toBytes("testBulkDeleteWithNumberOfVersions"); HTable ht = createTable(tableName); Index: hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestRowCountEndpoint.java =================================================================== --- hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestRowCountEndpoint.java (revision 1453717) +++ hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestRowCountEndpoint.java (working copy) @@ -54,7 +54,7 @@ private static HBaseTestingUtility TEST_UTIL = null; private static Configuration CONF = null; - @Ignore @BeforeClass + // @Ignore @BeforeClass public static void setupBeforeClass() throws Exception { TEST_UTIL = new HBaseTestingUtility(); CONF = TEST_UTIL.getConfiguration(); @@ -65,12 +65,12 @@ TEST_UTIL.createTable(TEST_TABLE, TEST_FAMILY); } - @Ignore @AfterClass + // @Ignore @AfterClass public static void tearDownAfterClass() throws Exception { TEST_UTIL.shutdownMiniCluster(); } - @Ignore @Test + // @Ignore @Test public void testEndpoint() throws Throwable { HTable table = new HTable(CONF, TEST_TABLE); Index: hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestZooKeeperScanPolicyObserver.java =================================================================== --- hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestZooKeeperScanPolicyObserver.java (revision 1453717) +++ hbase-examples/src/test/java/org/apache/hadoop/hbase/coprocessor/example/TestZooKeeperScanPolicyObserver.java (working copy) @@ -52,8 +52,9 @@ private static final byte[] Q = Bytes.toBytes("qual"); private static final byte[] R = Bytes.toBytes("row"); - @Ignore @BeforeClass + // @BeforeClass public static void setUpBeforeClass() throws Exception { + System.out.println("HERE!!!!!!!!"); // Test we can first start the ZK cluster by itself Configuration conf = TEST_UTIL.getConfiguration(); conf.setStrings(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY, @@ -62,12 +63,12 @@ TEST_UTIL.startMiniCluster(); } - @Ignore @AfterClass + // @AfterClass public static void tearDownAfterClass() throws Exception { TEST_UTIL.shutdownMiniCluster(); } - @Ignore @Test + // @Ignore @Test public void testScanPolicyObserver() throws Exception { byte[] tableName = Bytes.toBytes("testScanPolicyObserver"); HTableDescriptor desc = new HTableDescriptor(tableName);