Skip to content

Commit

Permalink
HBASE-13414 Removes now-obselete checks for JRE 6 in TestHCM.
Browse files Browse the repository at this point in the history
  • Loading branch information
busbey committed Apr 8, 2015
1 parent 8cd3001 commit cbc53a0
Showing 1 changed file with 1 addition and 16 deletions.
Expand Up @@ -69,7 +69,6 @@
import org.apache.hadoop.hbase.util.JVMClusterUtil;
import org.apache.hadoop.hbase.util.ManualEnvironmentEdge;
import org.apache.hadoop.hbase.util.Threads;
import org.jboss.netty.util.internal.DetectionUtil;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
Expand Down Expand Up @@ -101,8 +100,6 @@ public class TestHCM {
private static final byte[] ROW_X = Bytes.toBytes("xxx");
private static Random _randy = new Random();

private static boolean isJavaOk = DetectionUtil.javaVersion() > 6;

/**
* This copro sleeps 20 second. The first call it fails. The second time, it works.
*/
Expand All @@ -124,11 +121,7 @@ public void preGetOp(final ObserverContext<RegionCoprocessorEnvironment> e,

@BeforeClass
public static void setUpBeforeClass() throws Exception {
TEST_UTIL.getConfiguration().setBoolean(HConstants.STATUS_PUBLISHED,
HConstants.STATUS_PUBLISHED_DEFAULT);
if (isJavaOk) {
TEST_UTIL.getConfiguration().setBoolean(HConstants.STATUS_PUBLISHED, true);
}
TEST_UTIL.getConfiguration().setBoolean(HConstants.STATUS_PUBLISHED, true);
TEST_UTIL.startMiniCluster(2);
}

Expand Down Expand Up @@ -211,10 +204,6 @@ public void testAdminFactory() throws IOException {
// Fails too often! Needs work. HBASE-12558
@Ignore @Test(expected = RegionServerStoppedException.class)
public void testClusterStatus() throws Exception {
if (!isJavaOk){
// This test requires jdk 1.7+
throw new RegionServerStoppedException("as expected by the test...");
}

TableName tn =
TableName.valueOf("testClusterStatus");
Expand Down Expand Up @@ -467,10 +456,6 @@ public void testConnectionIdle() throws Exception {
*/
@Test
public void testConnectionCut() throws Exception {
if (!isJavaOk){
// This test requires jdk 1.7+
return;
}

TableName tableName = TableName.valueOf("HCM-testConnectionCut");

Expand Down

0 comments on commit cbc53a0

Please sign in to comment.