You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/03/15 01:24:04 UTC

[21/44] incubator-geode git commit: GEODE-1030 remove multicast ops check before region ops.

GEODE-1030 remove multicast ops check before region ops.

Some time test can get packet from other test.


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

Branch: refs/heads/feature/GEODE-949-2
Commit: b3134705480b4b14d51c15d83477c44ba5a2a282
Parents: 41f4f14
Author: Hitesh Khamesra <hk...@pivotal.io>
Authored: Wed Mar 9 14:40:39 2016 -0800
Committer: Hitesh Khamesra <hk...@pivotal.io>
Committed: Thu Mar 10 09:47:24 2016 -0800

----------------------------------------------------------------------
 .../gemfire/cache30/DistributedMulticastRegionDUnitTest.java  | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b3134705/geode-core/src/test/java/com/gemstone/gemfire/cache30/DistributedMulticastRegionDUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/cache30/DistributedMulticastRegionDUnitTest.java b/geode-core/src/test/java/com/gemstone/gemfire/cache30/DistributedMulticastRegionDUnitTest.java
index 9a0a6dd..01632a4 100755
--- a/geode-core/src/test/java/com/gemstone/gemfire/cache30/DistributedMulticastRegionDUnitTest.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/cache30/DistributedMulticastRegionDUnitTest.java
@@ -97,7 +97,8 @@ public class DistributedMulticastRegionDUnitTest extends CacheTestCase {
     //1. start locator with mcast port
     vm0.invoke(create);
     vm1.invoke(create);
-    
+    //There is possibility that you may get this packet from other tests
+    /*
     SerializableRunnable validateMulticastBeforeRegionOps =
         new CacheSerializableRunnable("validateMulticast before region ops") {
             public void run2() throws CacheException {
@@ -107,6 +108,7 @@ public class DistributedMulticastRegionDUnitTest extends CacheTestCase {
       
     vm0.invoke(validateMulticastBeforeRegionOps);
     vm1.invoke(validateMulticastBeforeRegionOps);
+    */
     
     SerializableRunnable doPuts =
       new CacheSerializableRunnable("do put") {
@@ -181,6 +183,8 @@ public class DistributedMulticastRegionDUnitTest extends CacheTestCase {
       vm0.invoke(create);
       vm1.invoke(create);
       
+    //There is possibility that you may get this packet from other tests
+      /*
       SerializableRunnable validateMulticastBeforeRegionOps =
           new CacheSerializableRunnable("validateMulticast before region ops") {
               public void run2() throws CacheException {
@@ -190,6 +194,7 @@ public class DistributedMulticastRegionDUnitTest extends CacheTestCase {
         
       vm0.invoke(validateMulticastBeforeRegionOps);
       vm1.invoke(validateMulticastBeforeRegionOps);
+      */
       
       SerializableRunnable doPuts =
         new CacheSerializableRunnable("do put") {