From 7e97946c359bfcb62ef39a2ce37083554501f1b0 Mon Sep 17 00:00:00 2001 From: joewitt Date: Mon, 13 Feb 2017 23:43:14 -0500 Subject: [PATCH] NIFI-3412 ignoring tests which depend on timing/network setup This closes #1503. Signed-off-by: Andy LoPresto --- .../java/org/apache/nifi/processors/gettcp/TestGetTCP.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nifi-nar-bundles/nifi-tcp-bundle/nifi-tcp-processors/src/test/java/org/apache/nifi/processors/gettcp/TestGetTCP.java b/nifi-nar-bundles/nifi-tcp-bundle/nifi-tcp-processors/src/test/java/org/apache/nifi/processors/gettcp/TestGetTCP.java index bcc4092557..7d585e1f76 100644 --- a/nifi-nar-bundles/nifi-tcp-bundle/nifi-tcp-processors/src/test/java/org/apache/nifi/processors/gettcp/TestGetTCP.java +++ b/nifi-nar-bundles/nifi-tcp-bundle/nifi-tcp-processors/src/test/java/org/apache/nifi/processors/gettcp/TestGetTCP.java @@ -26,6 +26,7 @@ import java.net.Socket; import org.apache.nifi.util.TestRunner; import org.apache.nifi.util.TestRunners; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; public final class TestGetTCP { @@ -71,6 +72,7 @@ public final class TestGetTCP { testRunner.assertValid(); } + @Ignore("test is brittle as depends on timing - not reliable across systems, in parallel builds, etc..") @Test public void testSuccessInteraction() throws Exception { int port = this.availablePort(); @@ -85,6 +87,7 @@ public final class TestGetTCP { server.stop(); } + @Ignore("test is brittle as depends on timing - not reliable across systems, in parallel builds, etc..") @Test public void testPartialInteraction() throws Exception { int port = this.availablePort();