You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/09/09 15:41:31 UTC

[24/50] ignite git commit: Removed test.

Removed test.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b5eeb3bb
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b5eeb3bb
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b5eeb3bb

Branch: refs/heads/ignite-1093-2
Commit: b5eeb3bbc874a8501373f3c1ae96a2b3a246bb09
Parents: 069653b
Author: sboikov <sb...@gridgain.com>
Authored: Tue Sep 8 16:52:07 2015 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Tue Sep 8 16:52:07 2015 +0300

----------------------------------------------------------------------
 .../ignite/GridSuppressedExceptionSelfTest.java | 22 --------------------
 1 file changed, 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b5eeb3bb/modules/core/src/test/java/org/apache/ignite/GridSuppressedExceptionSelfTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/GridSuppressedExceptionSelfTest.java b/modules/core/src/test/java/org/apache/ignite/GridSuppressedExceptionSelfTest.java
index 2485cbb..6e32249 100644
--- a/modules/core/src/test/java/org/apache/ignite/GridSuppressedExceptionSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/GridSuppressedExceptionSelfTest.java
@@ -88,28 +88,6 @@ public class GridSuppressedExceptionSelfTest extends TestCase {
     }
 
     /**
-     * Made to demonstrate stack printing for {@link IgniteCheckedException}. Do not enable.
-     *
-     * @throws Exception If failed.
-     */
-    public void testStackTrace() throws Exception {
-        fail("https://issues.apache.org/jira/browse/IGNITE-818");
-
-        IgniteCheckedException me = new IgniteCheckedException("Test message.");
-
-        for (int i = 5; i < 20; i++) {
-            try {
-                generateException(i, null);
-            }
-            catch (IgniteCheckedException e) {
-                me.addSuppressed(e);
-            }
-        }
-
-        me.printStackTrace();
-    }
-
-    /**
      * @return A multi exception with few nested causes and
      *  {@link IllegalAccessException} in hierarchy.
      */