# IPC 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/4f9dc3e8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/4f9dc3e8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/4f9dc3e8 Branch: refs/heads/ignite-45-ipc-debug Commit: 4f9dc3e832c1fdf438edde27caf68e57fb02b485 Parents: 994b6b1 Author: Valentin Kulichenko <vkuliche...@gridgain.com> Authored: Tue Mar 24 10:48:52 2015 -0700 Committer: Valentin Kulichenko <vkuliche...@gridgain.com> Committed: Tue Mar 24 10:48:52 2015 -0700 ---------------------------------------------------------------------- .../util/ipc/shmem/IpcSharedMemoryCrashDetectionSelfTest.java | 7 ++----- .../ignite/testsuites/IgniteIpcSharedMemorySelfTestSuite.java | 6 +++--- 2 files changed, 5 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/4f9dc3e8/modules/core/src/test/java/org/apache/ignite/internal/util/ipc/shmem/IpcSharedMemoryCrashDetectionSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/util/ipc/shmem/IpcSharedMemoryCrashDetectionSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/util/ipc/shmem/IpcSharedMemoryCrashDetectionSelfTest.java index 0675866..8fffa11 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/util/ipc/shmem/IpcSharedMemoryCrashDetectionSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/util/ipc/shmem/IpcSharedMemoryCrashDetectionSelfTest.java @@ -48,7 +48,7 @@ public class IpcSharedMemoryCrashDetectionSelfTest extends GridCommonAbstractTes /** * @throws Exception If failed. */ - public void testIgfsServerClientInteractionsUponClientKilling() throws Exception { + public void _testIgfsServerClientInteractionsUponClientKilling() throws Exception { U.setWorkDirectory(null, U.getIgniteHome()); // Run server endpoint. @@ -86,9 +86,6 @@ public class IpcSharedMemoryCrashDetectionSelfTest extends GridCommonAbstractTes } finally { srv.close(); - - IpcSharedMemoryUtils.cleanResources(U.resolveWorkDirectory( - srv.getTokenDirectoryPath(), false).getParentFile(), null, log); } } @@ -144,7 +141,7 @@ public class IpcSharedMemoryCrashDetectionSelfTest extends GridCommonAbstractTes /** * @throws Exception If failed. */ - public void testClientThrowsCorrectExceptionUponServerKilling() throws Exception { + public void _testClientThrowsCorrectExceptionUponServerKilling() throws Exception { info("Shared memory IDs before starting server-client interactions: " + IpcSharedMemoryUtils.sharedMemoryIds()); http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/4f9dc3e8/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteIpcSharedMemorySelfTestSuite.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteIpcSharedMemorySelfTestSuite.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteIpcSharedMemorySelfTestSuite.java index cf45fad..f07d687 100644 --- a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteIpcSharedMemorySelfTestSuite.java +++ b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteIpcSharedMemorySelfTestSuite.java @@ -31,10 +31,10 @@ public class IgniteIpcSharedMemorySelfTestSuite extends TestSuite { public static TestSuite suite() throws Exception { TestSuite suite = new TestSuite("Ignite IPC Shared Memory Test Suite."); - suite.addTest(new TestSuite(IpcSharedMemorySpaceSelfTest.class)); - suite.addTest(new TestSuite(IpcSharedMemoryUtilsSelfTest.class)); +// suite.addTest(new TestSuite(IpcSharedMemorySpaceSelfTest.class)); +// suite.addTest(new TestSuite(IpcSharedMemoryUtilsSelfTest.class)); suite.addTest(new TestSuite(IpcSharedMemoryCrashDetectionSelfTest.class)); - suite.addTest(new TestSuite(IpcSharedMemoryNativeLoaderSelfTest.class)); +// suite.addTest(new TestSuite(IpcSharedMemoryNativeLoaderSelfTest.class)); return suite; }