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/05/25 21:41:16 UTC

[1/2] incubator-geode git commit: Revert changes to dunit test case

Repository: incubator-geode
Updated Branches:
  refs/heads/feature/GEODE-1452 d22524332 -> 5e9f5c4ea


Revert changes to dunit test case


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

Branch: refs/heads/feature/GEODE-1452
Commit: ef0ed65917079c7e2a368531acbad847f7c81abd
Parents: d225243
Author: Kirk Lund <kl...@apache.org>
Authored: Wed May 25 13:45:39 2016 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Wed May 25 13:45:39 2016 -0700

----------------------------------------------------------------------
 .../cache/tier/sockets/DurableClientTestCase.java       | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/ef0ed659/geode-cq/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/DurableClientTestCase.java
----------------------------------------------------------------------
diff --git a/geode-cq/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/DurableClientTestCase.java b/geode-cq/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/DurableClientTestCase.java
index d6180a5..cfe4d67 100755
--- a/geode-cq/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/DurableClientTestCase.java
+++ b/geode-cq/src/test/java/com/gemstone/gemfire/internal/cache/tier/sockets/DurableClientTestCase.java
@@ -1056,15 +1056,15 @@ public class DurableClientTestCase extends DistributedTestCase {
   }
 
   @Ignore("This test is failing inconsistently, see bug 51258")
-  @Test
-  public void testDurableNonHAFailover() throws InterruptedException {
-    durableFailover(0);
-    durableFailoverAfterReconnect(0);
+  public void DISABLED_testDurableNonHAFailover() throws InterruptedException
+  {
+      durableFailover(0);
+      durableFailoverAfterReconnect(0);   
   }
 
   @Ignore("This test is failing inconsistently, see bug 51258")
-  @Test
-  public void testDurableHAFailover() throws InterruptedException {
+  public void DISABLED_testDurableHAFailover() throws InterruptedException
+  {
     //Clients see this when the servers disconnect
     IgnoredException.addIgnoredException("Could not find any server");
     durableFailover(1);


[2/2] incubator-geode git commit: Remove invalid test

Posted by kl...@apache.org.
Remove invalid 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/5e9f5c4e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/5e9f5c4e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/5e9f5c4e

Branch: refs/heads/feature/GEODE-1452
Commit: 5e9f5c4ea06898b39176ff0cb22b4f7310e00780
Parents: ef0ed65
Author: Kirk Lund <kl...@apache.org>
Authored: Wed May 25 13:45:54 2016 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Wed May 25 13:45:54 2016 -0700

----------------------------------------------------------------------
 .../InternalDistributedSystemJUnitTest.java     | 21 --------------------
 1 file changed, 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/5e9f5c4e/geode-core/src/test/java/com/gemstone/gemfire/distributed/internal/InternalDistributedSystemJUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/distributed/internal/InternalDistributedSystemJUnitTest.java b/geode-core/src/test/java/com/gemstone/gemfire/distributed/internal/InternalDistributedSystemJUnitTest.java
index 6ad6f53..248fc6b 100644
--- a/geode-core/src/test/java/com/gemstone/gemfire/distributed/internal/InternalDistributedSystemJUnitTest.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/distributed/internal/InternalDistributedSystemJUnitTest.java
@@ -281,27 +281,6 @@ public class InternalDistributedSystemJUnitTest
   }
 
   /**
-   * Test a configuration with an <code>mcastPort</code> of zero and
-   * an empty <code>locators</code>.
-   *
-   * @deprecated This test creates a "loner" distributed system
-   */
-  @Ignore("TODO")
-  @Test
-  public void testEmptyLocators() {
-    Properties props = new Properties();
-    props.put(DistributionConfig.MCAST_PORT_NAME, String.valueOf(0));
-    props.put(DistributionConfig.LOCATORS_NAME, "");
-    try {
-      createSystem(props);
-      fail("Should have thrown an IllegalArgumentException");
-
-    } catch (IllegalArgumentException ex) {
-      // pass...
-    }
-  }
-
-  /**
    * Tests that getting the log level is what we expect.
    */
   @Test