Repository: accumulo Updated Branches: refs/heads/1.6.1-SNAPSHOT d9ee274dc -> 5875781c5 refs/heads/master 1078d65da -> 52277e06a
ACCUMULO-2935 Add a timeout to a test that otherwise hung indefinitely Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/5875781c Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/5875781c Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/5875781c Branch: refs/heads/1.6.1-SNAPSHOT Commit: 5875781c52e030c221fcf9a04f2bde3c8075fe4f Parents: d9ee274 Author: Josh Elser <els...@apache.org> Authored: Sun Jun 22 17:16:26 2014 -0400 Committer: Josh Elser <els...@apache.org> Committed: Sun Jun 22 17:16:26 2014 -0400 ---------------------------------------------------------------------- test/src/test/java/org/apache/accumulo/test/MetaSplitIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/5875781c/test/src/test/java/org/apache/accumulo/test/MetaSplitIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/MetaSplitIT.java b/test/src/test/java/org/apache/accumulo/test/MetaSplitIT.java index 6d05921..4ea2663 100644 --- a/test/src/test/java/org/apache/accumulo/test/MetaSplitIT.java +++ b/test/src/test/java/org/apache/accumulo/test/MetaSplitIT.java @@ -31,7 +31,7 @@ import org.junit.Test; public class MetaSplitIT extends SimpleMacIT { - @Test(expected = AccumuloException.class) + @Test(expected = AccumuloException.class, timeout = 30000) public void testRootTableSplit() throws Exception { TableOperations opts = getConnector().tableOperations(); SortedSet<Text> splits = new TreeSet<Text>();