Skip to content

Commit

Permalink
[UNDERTOW-2279] Disable the LotsOfHeadersResponseTestCase for now on …
Browse files Browse the repository at this point in the history
…Windows, because it has failed on unrelated PR CIs we know it is a preexisting intermitent failure

Signed-off-by: Flavia Rainone <frainone@redhat.com>
  • Loading branch information
fl4via committed Jun 7, 2023
1 parent 9b6af5d commit c7cf4fd
Showing 1 changed file with 6 additions and 3 deletions.
Expand Up @@ -18,23 +18,24 @@

package io.undertow.server.handlers;

import java.io.IOException;

import io.undertow.server.HttpHandler;
import io.undertow.server.HttpServerExchange;
import io.undertow.testutils.AjpIgnore;
import io.undertow.testutils.DefaultServer;
import io.undertow.util.HttpString;
import io.undertow.testutils.TestHttpClient;
import io.undertow.util.HttpString;
import io.undertow.util.StatusCodes;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;

import java.io.IOException;

/**
* @author Stuart Douglas
*/
Expand Down Expand Up @@ -62,6 +63,8 @@ public void handleRequest(final HttpServerExchange exchange) {

@Test
public void testLotsOfHeadersInResponse() throws IOException {
// FIXME UNDERTOW-2279
Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows"));
TestHttpClient client = new TestHttpClient();
try {
HttpGet get = new HttpGet(DefaultServer.getDefaultServerURL() + "/path");
Expand Down

0 comments on commit c7cf4fd

Please sign in to comment.