HBASE-19911 Convert some tests from small to medium because they are timing out: TestNettyRpcServer, TestClientClusterStatus; ADDENDUM2 Up timeout for smalltests from 30 seconds to 60 seconds -- a pause on jenkins can mess up smalltests
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/52cb9aaf Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/52cb9aaf Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/52cb9aaf Branch: refs/heads/HBASE-19064 Commit: 52cb9aaf6e98e89b4891ad50ac6192f54229c021 Parents: 9272f40 Author: Michael Stack <[email protected]> Authored: Thu Feb 1 08:24:54 2018 -0800 Committer: Michael Stack <[email protected]> Committed: Thu Feb 1 08:25:44 2018 -0800 ---------------------------------------------------------------------- .../test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/52cb9aaf/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java ---------------------------------------------------------------------- diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java index 74bd70e..734ce3f 100644 --- a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java +++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java @@ -63,7 +63,9 @@ public final class HBaseClassTestRule implements TestRule { for (Class<?> c : categories[0].value()) { if (c == SmallTests.class) { // See SmallTests. Supposed to run 15 seconds. - return 30; + // Lots of these timeout on Jenkins... a stall of ten or twenty seconds mess up what looks + // fine when run local. + return 60; } else if (c == MediumTests.class) { // See MediumTests. Supposed to run 50 seconds. return 180;
