NIFI-1789 Temporarily ignored incorrectly failing TestPutUDP#testUnknownHostname.

This closes #373.
This commit is contained in:
Andy LoPresto 2016-04-20 19:13:57 -07:00
parent 293a3042cd
commit f94b0f2ed2
No known key found for this signature in database
GPG Key ID: 3C6EF65B2F7DEF69
1 changed files with 3 additions and 1 deletions

View File

@ -19,14 +19,15 @@ package org.apache.nifi.processors.standard;
import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull; import static org.junit.Assert.assertNull;
import java.net.DatagramPacket; import java.net.DatagramPacket;
import java.net.InetAddress; import java.net.InetAddress;
import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ArrayBlockingQueue;
import org.apache.nifi.util.TestRunner; import org.apache.nifi.util.TestRunner;
import org.apache.nifi.util.TestRunners; import org.apache.nifi.util.TestRunners;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
public class TestPutUDP { public class TestPutUDP {
@ -141,6 +142,7 @@ public class TestPutUDP {
checkInputQueueIsEmpty(); checkInputQueueIsEmpty();
} }
@Ignore("This test is failing incorrectly as documented in NIFI-1795")
@Test(timeout = LONG_TEST_TIMEOUT_PERIOD) @Test(timeout = LONG_TEST_TIMEOUT_PERIOD)
public void testUnknownHostname() throws Exception { public void testUnknownHostname() throws Exception {
configureProperties(UNKNOWN_HOST, true); configureProperties(UNKNOWN_HOST, true);