Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 422B31736B for ; Sat, 11 Apr 2015 16:54:01 +0000 (UTC) Received: (qmail 4169 invoked by uid 500); 11 Apr 2015 16:54:01 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 4098 invoked by uid 500); 11 Apr 2015 16:54:01 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 4059 invoked by uid 99); 11 Apr 2015 16:54:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Apr 2015 16:54:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 11 Apr 2015 16:53:39 +0000 Received: (qmail 2477 invoked by uid 99); 11 Apr 2015 16:53:36 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Apr 2015 16:53:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 67F61E0990; Sat, 11 Apr 2015 16:53:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agoncharuk@apache.org To: commits@ignite.incubator.apache.org Date: Sat, 11 Apr 2015 16:53:40 -0000 Message-Id: <6bcedba2730043c4a230543c32e1071e@git.apache.org> In-Reply-To: <235f631df20547eab178b2fe30155e0f@git.apache.org> References: <235f631df20547eab178b2fe30155e0f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/11] incubator-ignite git commit: # ignite-sprint-3 increased test timeout X-Virus-Checked: Checked by ClamAV on apache.org # ignite-sprint-3 increased test timeout Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/a22e1974 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/a22e1974 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/a22e1974 Branch: refs/heads/ignite-721 Commit: a22e19744ca30b32bdd081b516cf2d54e4c744e8 Parents: 9b21a97 Author: sboikov Authored: Sat Apr 11 12:55:51 2015 +0300 Committer: sboikov Committed: Sat Apr 11 12:55:51 2015 +0300 ---------------------------------------------------------------------- .../cache/GridCacheOffHeapMultiThreadedUpdateSelfTest.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/a22e1974/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheOffHeapMultiThreadedUpdateSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheOffHeapMultiThreadedUpdateSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheOffHeapMultiThreadedUpdateSelfTest.java index 8c1795b..1a47049 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheOffHeapMultiThreadedUpdateSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheOffHeapMultiThreadedUpdateSelfTest.java @@ -30,6 +30,11 @@ import static org.apache.ignite.transactions.TransactionIsolation.*; * Multithreaded update test with off heap enabled. */ public class GridCacheOffHeapMultiThreadedUpdateSelfTest extends GridCacheOffHeapMultiThreadedUpdateAbstractSelfTest { + /** {@inheritDoc} */ + @Override protected long getTestTimeout() { + return 5 * 60_000; + } + /** * @throws Exception If failed. */