Skip to content

Commit

Permalink
[UNDERTOW-1523][UNDERTOW-1948] Ignore test this way
Browse files Browse the repository at this point in the history
  • Loading branch information
fl4via committed Aug 5, 2021
1 parent c221ab6 commit 3fbbd7d
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -18,6 +18,7 @@
import java.io.IOException;

import org.junit.AfterClass;
import org.junit.Assume;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;

Expand Down Expand Up @@ -49,4 +50,16 @@ protected TestHttpClient createClient() {
protected String getBaseUrl() {
return DefaultServer.getDefaultServerSSLAddress();
}

@Override public void testAsyncServletOutputStreamOffIOThread() {
// FIXME UNDERTOW-1948 temporarily ignore the exception
Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows") && DefaultServer.isProxy() && DefaultServer.isAjp());
super.testAsyncServletOutputStreamOffIOThread();
}

@Override public void testAsyncServletOutputStreamWithPreable() {
// FIXME UNDERTOW-1948 temporarily ignore the exception
Assume.assumeFalse(System.getProperty("os.name").startsWith("Windows") && DefaultServer.isProxy() && DefaultServer.isAjp());
super.testAsyncServletOutputStreamWithPreable();
}
}

0 comments on commit 3fbbd7d

Please sign in to comment.