Repository: ignite Updated Branches: refs/heads/master 9e4c2cdf8 -> e721619ac
IGNITE-9004 Failing all tests with issue link to IGNITE-9004: Failed to move temp file during segment creation Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e721619a Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e721619a Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e721619a Branch: refs/heads/master Commit: e721619acca9261a76cbc8d8c1fdb9987ef38ceb Parents: 9e4c2cd Author: Dmitriy Pavlov <[email protected]> Authored: Tue Jul 17 13:04:39 2018 +0300 Committer: Dmitriy Pavlov <[email protected]> Committed: Tue Jul 17 13:05:13 2018 +0300 ---------------------------------------------------------------------- .../standbycluster/IgniteChangeGlobalStateTest.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/e721619a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/standbycluster/IgniteChangeGlobalStateTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/standbycluster/IgniteChangeGlobalStateTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/standbycluster/IgniteChangeGlobalStateTest.java index 11e8514..70a9251 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/standbycluster/IgniteChangeGlobalStateTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/standbycluster/IgniteChangeGlobalStateTest.java @@ -40,6 +40,13 @@ import static org.apache.ignite.testframework.GridTestUtils.runAsync; * */ public class IgniteChangeGlobalStateTest extends IgniteChangeGlobalStateAbstractTest { + /** {@inheritDoc} */ + @Override protected void beforeTest() throws Exception { + fail("https://issues.apache.org/jira/browse/IGNITE-9004"); + + super.beforeTest(); + } + /** * @throws Exception if fail. */ @@ -73,8 +80,6 @@ public class IgniteChangeGlobalStateTest extends IgniteChangeGlobalStateAbstract * @throws Exception if fail. */ public void testStopPrimaryAndActivateFromClientNode() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-9004"); - Ignite ig1P = primary(0); Ignite ig2P = primary(1); Ignite ig3P = primary(2); @@ -488,8 +493,6 @@ public class IgniteChangeGlobalStateTest extends IgniteChangeGlobalStateAbstract * @throws Exception If failed. */ public void testFailGetLock() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-9004"); - Ignite ig1P = primary(0); Ignite ig2P = primary(1); Ignite ig3P = primary(2);
