You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by vf...@apache.org on 2015/11/25 20:07:16 UTC

[03/50] [abbrv] incubator-geode git commit: GEODE-171: Disabling ClientServerTimeSyncDUnitTest

GEODE-171: Disabling ClientServerTimeSyncDUnitTest

After discussion with Bruce, we may not even have this time sync
protocol after GEODE-77 merges. There's no point in continuing to see
failures from this broken test on develop in the mean time.


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

Branch: refs/heads/feature/GEODE-78
Commit: 7bc011293f311a77b44beac13c6d5c91a01abe3d
Parents: 46ec8ae
Author: Dan Smith <up...@apache.org>
Authored: Thu Sep 17 11:56:38 2015 -0700
Committer: Dan Smith <up...@apache.org>
Committed: Thu Sep 17 11:57:55 2015 -0700

----------------------------------------------------------------------
 .../gemfire/cache/ClientServerTimeSyncDUnitTest.java        | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/7bc01129/gemfire-core/src/test/java/com/gemstone/gemfire/cache/ClientServerTimeSyncDUnitTest.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/test/java/com/gemstone/gemfire/cache/ClientServerTimeSyncDUnitTest.java b/gemfire-core/src/test/java/com/gemstone/gemfire/cache/ClientServerTimeSyncDUnitTest.java
index d980bc8..492d9a4 100755
--- a/gemfire-core/src/test/java/com/gemstone/gemfire/cache/ClientServerTimeSyncDUnitTest.java
+++ b/gemfire-core/src/test/java/com/gemstone/gemfire/cache/ClientServerTimeSyncDUnitTest.java
@@ -24,7 +24,7 @@ public class ClientServerTimeSyncDUnitTest extends CacheTestCase {
     super(name);
   }
 
-  @Ignore("BUg 52327")
+  @Ignore("Bug 52327")
   public void DISABLED_testClientTimeAdvances() {
     Host host = Host.getHost(0);
     VM vm0 = host.getVM(0); // Server
@@ -96,8 +96,13 @@ public class ClientServerTimeSyncDUnitTest extends CacheTestCase {
       vm1.invoke(CacheTestCase.class, "disconnectFromDS");
     }
   }
+  
+  public void testNothing() {
+    // place-holder to keep dunit runner from barfing
+  }
 
-  public void testClientTimeSlowsDown() {
+  @Ignore("Failing inconsistently")
+  public void DISABLED_testClientTimeSlowsDown() {
     Host host = Host.getHost(0);
     VM vm0 = host.getVM(0); // Server
     VM vm1 = host.getVM(1); // Client