You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2015/05/22 08:47:43 UTC

incubator-ignite git commit: # GG-10249: Debug.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-gg-10249b ef1233374 -> 56d068d4c


# GG-10249: Debug.


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

Branch: refs/heads/ignite-gg-10249b
Commit: 56d068d4c5ef133ccc012c91ede82c6057ef6530
Parents: ef12333
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Fri May 22 09:48:02 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Fri May 22 09:48:02 2015 +0300

----------------------------------------------------------------------
 .../GridSwapSpaceSpiAbstractSelfTest.java       | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/56d068d4/modules/core/src/test/java/org/apache/ignite/spi/swapspace/GridSwapSpaceSpiAbstractSelfTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/spi/swapspace/GridSwapSpaceSpiAbstractSelfTest.java b/modules/core/src/test/java/org/apache/ignite/spi/swapspace/GridSwapSpaceSpiAbstractSelfTest.java
index 94658d5..3f4e14c 100644
--- a/modules/core/src/test/java/org/apache/ignite/spi/swapspace/GridSwapSpaceSpiAbstractSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/spi/swapspace/GridSwapSpaceSpiAbstractSelfTest.java
@@ -103,7 +103,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
      *
      * @throws Exception If failed.
      */
-    public void testSimpleCrud() throws Exception {
+    public void _testSimpleCrud() throws Exception {
         assertEquals(0, spi.count(DFLT_SPACE_NAME));
 
         long key1 = 1;
@@ -139,7 +139,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
      *
      * @throws Exception If failed.
      */
-    public void testSimpleCrudDifferentSpaces() throws Exception {
+    public void _testSimpleCrudDifferentSpaces() throws Exception {
         String space1 = SPACE1;
 
         spi.clear(space1);
@@ -224,7 +224,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
      *
      * @throws Exception If failed.
      */
-    public void testBatchCrud() throws Exception {
+    public void _testBatchCrud() throws Exception {
         assertEquals(0, spi.count(DFLT_SPACE_NAME));
 
         final Map<SwapKey, byte[]> batch = new HashMap<>();
@@ -273,7 +273,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testDeleteIfNotPersist() throws Exception {
+    public void _testDeleteIfNotPersist() throws Exception {
         spi.store(SPACE1, new SwapKey("key1"), "value1".getBytes(), context());
 
         assertArrayEquals("value1".getBytes(), spi.read(SPACE1, new SwapKey("key1"), context()));
@@ -282,7 +282,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testStoreReadRemove() throws Exception {
+    public void _testStoreReadRemove() throws Exception {
         int cnt = 5;
 
         final CountDownLatch storeLatch = new CountDownLatch(cnt);
@@ -343,7 +343,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testStoreReadRemoveNulls() throws Exception {
+    public void _testStoreReadRemoveNulls() throws Exception {
         int cnt = 5;
 
         final CountDownLatch storeLatch = new CountDownLatch(cnt);
@@ -403,7 +403,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testCollisions() throws Exception {
+    public void _testCollisions() throws Exception {
         int cnt = 5;
 
         final CountDownLatch storeLatch = new CountDownLatch(cnt);
@@ -473,7 +473,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testIteration() throws Exception {
+    public void _testIteration() throws Exception {
         spi.clear(SPACE1);
 
         int cnt = 10;
@@ -511,7 +511,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testIterationOverPartition() throws Exception {
+    public void _testIterationOverPartition() throws Exception {
         spi.store(SPACE1, new SwapKey("key", 0), str2ByteArray("value"), context());
 
         spi.clear(SPACE1);
@@ -553,7 +553,7 @@ public abstract class GridSwapSpaceSpiAbstractSelfTest extends GridCommonAbstrac
     /**
      * @throws Exception If failed.
      */
-    public void testSwapIterator() throws Exception {
+    public void _testSwapIterator() throws Exception {
         spi.store(SPACE1, new SwapKey("key", 0), str2ByteArray("value"), context());
 
         spi.clear(SPACE1);