Repository: hadoop Updated Branches: refs/heads/branch-2.8 f3dbabb13 -> 80c151b88
MAPREDUCE-6670. TestJobListCache#testEviction sometimes fails on Windows with timeout. Contributed by Gergely Novák. (cherry picked from commit de96d7c88a42cd54bd88ce2de63122998e967efa) (cherry picked from commit 5574f827991cfc3d14f71184296866d387ed174f) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/80c151b8 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/80c151b8 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/80c151b8 Branch: refs/heads/branch-2.8 Commit: 80c151b889b81c4ae25fd046d4c9dabec9383e35 Parents: f3dbabb Author: Junping Du <junping...@apache.org> Authored: Wed Apr 6 08:32:35 2016 -0700 Committer: Junping Du <junping...@apache.org> Committed: Wed Apr 13 08:58:24 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/80c151b8/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java ---------------------------------------------------------------------- diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java index 6ebbb7c..3ccc222 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/TestJobListCache.java @@ -45,7 +45,7 @@ public class TestJobListCache { cache.values().size()); } - @Test (timeout = 1000) + @Test (timeout = 5000) public void testEviction() throws InterruptedException { int maxSize = 2; JobListCache cache = new JobListCache(maxSize, 1000);