You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by js...@apache.org on 2017/03/13 17:42:43 UTC

[16/50] [abbrv] geode git commit: GEODE-2488: Remove test from flaky category

GEODE-2488: Remove test from flaky category

Removed FlakyTest category.
Made note of this JIRA in the @Ignore annoations. This annotation can be
removed when the underlying problem (accumulating large repsonse data on
remote casuing OOME) is fixed.


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

Branch: refs/heads/GEODE-2290
Commit: eb59268bc5308c5de7339e0dbca8d107d879ac76
Parents: 41f1b27
Author: Ken Howe <kh...@pivotal.io>
Authored: Fri Mar 3 13:33:22 2017 -0800
Committer: Ken Howe <kh...@pivotal.io>
Committed: Mon Mar 6 13:56:36 2017 -0800

----------------------------------------------------------------------
 .../geode/management/internal/cli/NetstatDUnitTest.java      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/eb59268b/geode-core/src/test/java/org/apache/geode/management/internal/cli/NetstatDUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/management/internal/cli/NetstatDUnitTest.java b/geode-core/src/test/java/org/apache/geode/management/internal/cli/NetstatDUnitTest.java
index e987fc2..8ac993b 100644
--- a/geode-core/src/test/java/org/apache/geode/management/internal/cli/NetstatDUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/management/internal/cli/NetstatDUnitTest.java
@@ -30,7 +30,7 @@ import org.junit.experimental.categories.Category;
 
 import java.util.Properties;
 
-@Category({DistributedTest.class, FlakyTest.class})
+@Category(DistributedTest.class)
 public class NetstatDUnitTest {
   @ClassRule
   public static LocatorServerStartupRule lsRule = new LocatorServerStartupRule();
@@ -91,21 +91,21 @@ public class NetstatDUnitTest {
     gfshConnector.executeAndVerifyCommand(netStatCommand);
   }
 
-  @Ignore
+  @Ignore("GEODE-2488")
   @Test
   public void testConnectToLocatorWithLargeCommandResponse() throws Exception {
     gfshConnector.connect(ports[0], GfshShellConnectionRule.PortType.locator);
     gfshConnector.executeAndVerifyCommand(netStatLsofCommand);
   }
 
-  @Ignore
+  @Ignore("GEODE-2488")
   @Test
   public void testConnectToJmxManagerOneWithLargeCommandResponse() throws Exception {
     gfshConnector.connect(ports[1], GfshShellConnectionRule.PortType.jmxManger);
     gfshConnector.executeAndVerifyCommand(netStatLsofCommand);
   }
 
-  @Ignore
+  @Ignore("GEODE-2488")
   @Test
   public void testConnectToJmxManagerTwoWithLargeCommandResponse() throws Exception {
     gfshConnector.connect(ports[2], GfshShellConnectionRule.PortType.jmxManger);