HBASE-9007 TestReplicationKillSlaveRS.killOneSlaveRS fails; ADDENDUM/FIX

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1505803 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-07-22 20:52:34 +00:00
parent c20b71a836
commit 1c60a8ca6c
2 changed files with 5 additions and 4 deletions

View File

@ -19,7 +19,6 @@ package org.apache.hadoop.hbase.replication;
import org.apache.hadoop.hbase.LargeTests;
import org.junit.Test;
import org.junit.Ignore;
import org.junit.experimental.categories.Category;
/**
@ -29,8 +28,9 @@ import org.junit.experimental.categories.Category;
@Category(LargeTests.class)
public class TestReplicationKillMasterRS extends TestReplicationKillRS {
@Ignore ("Flakey. See HBASE-9008 and HBASE-9007") @Test(timeout=300000)
@Test(timeout=300000)
public void killOneMasterRS() throws Exception {
loadTableAndKillRS(utility1);
}
}
}

View File

@ -19,6 +19,7 @@ package org.apache.hadoop.hbase.replication;
import org.apache.hadoop.hbase.LargeTests;
import org.junit.Test;
import org.junit.Ignore;
import org.junit.experimental.categories.Category;
/**
@ -28,7 +29,7 @@ import org.junit.experimental.categories.Category;
@Category(LargeTests.class)
public class TestReplicationKillSlaveRS extends TestReplicationKillRS {
@Test(timeout=300000)
@Ignore ("Flakey. See HBASE-9008 and HBASE-9007") @Test(timeout=300000)
public void killOneSlaveRS() throws Exception {
loadTableAndKillRS(utility2);
}