Repository: incubator-ignite Updated Branches: refs/heads/ignite-yardstick-client d522df6b9 -> ecf608178
# ignite-sprint-6 tests fixes Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/a9228c07 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/a9228c07 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/a9228c07 Branch: refs/heads/ignite-yardstick-client Commit: a9228c07aa125613df45af226fe133b93c8c2783 Parents: 5b9013f Author: sboikov <sboi...@gridgain.com> Authored: Tue Jun 16 15:02:21 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Tue Jun 16 15:02:21 2015 +0300 ---------------------------------------------------------------------- .../cache/GridCacheMultinodeUpdateAbstractSelfTest.java | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/a9228c07/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMultinodeUpdateAbstractSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMultinodeUpdateAbstractSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMultinodeUpdateAbstractSelfTest.java index ddf42e3..4152229 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMultinodeUpdateAbstractSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheMultinodeUpdateAbstractSelfTest.java @@ -33,6 +33,7 @@ import static org.apache.ignite.cache.CacheMode.*; /** * Multinode update test. */ +@SuppressWarnings("unchecked") public abstract class GridCacheMultinodeUpdateAbstractSelfTest extends GridCacheAbstractSelfTest { /** */ protected static volatile boolean failed; @@ -52,6 +53,7 @@ public abstract class GridCacheMultinodeUpdateAbstractSelfTest extends GridCache return 3 * 60_000; } + /** {@inheritDoc} */ @Override protected CacheConfiguration cacheConfiguration(String gridName) throws Exception { CacheConfiguration ccfg = super.cacheConfiguration(gridName); @@ -62,6 +64,13 @@ public abstract class GridCacheMultinodeUpdateAbstractSelfTest extends GridCache return ccfg; } + /** {@inheritDoc} */ + @Override protected void beforeTest() throws Exception { + super.beforeTest(); + + failed = false; + } + /** * @throws Exception If failed. */