Increase TPCHTestPlanning timeout
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/2bfa2c12 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/2bfa2c12 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/2bfa2c12 Branch: refs/heads/master Commit: 2bfa2c122511891b03aeea8cf88aa1fe4660ab31 Parents: eedb4d7 Author: Jacques Nadeau <[email protected]> Authored: Sat May 3 18:44:01 2014 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Sat May 3 18:44:01 2014 -0700 ---------------------------------------------------------------------- .../src/test/java/org/apache/drill/TestTpchPlanning.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/2bfa2c12/exec/java-exec/src/test/java/org/apache/drill/TestTpchPlanning.java ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/test/java/org/apache/drill/TestTpchPlanning.java b/exec/java-exec/src/test/java/org/apache/drill/TestTpchPlanning.java index 7327c67..69b770e 100644 --- a/exec/java-exec/src/test/java/org/apache/drill/TestTpchPlanning.java +++ b/exec/java-exec/src/test/java/org/apache/drill/TestTpchPlanning.java @@ -17,14 +17,17 @@ */ package org.apache.drill; +import org.apache.drill.common.util.TestTools; import org.junit.Ignore; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; public class TestTpchPlanning extends PlanningBase{ static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(TestTpchPlanning.class); - + @Rule public final TestRule TIMEOUT = TestTools.getTimeoutRule(50000); @Test public void tpch01() throws Exception{
