Skip to content
Permalink
Browse files

[WFCORE-4409] Disabling tests on JDK13 due to deadlock in sun.securit…

…y.ssl.SSLSocketImpl.

This is related to https://bugs.openjdk.java.net/browse/JDK-8219658
  • Loading branch information
ropalka committed Apr 8, 2019
1 parent a988279 commit 0a16a1519b2c13c1379801322123712caa79f0d7
@@ -63,8 +63,9 @@


@BeforeClass
public static void noJDK12() {
public static void noJDK12Plus() {
Assume.assumeFalse("Avoiding JDK 12 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "12".equals(System.getProperty("java.specification.version")));
Assume.assumeFalse("Avoiding JDK 13 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "13".equals(System.getProperty("java.specification.version")));
}


@@ -34,8 +34,9 @@
public class AuditLogToTLSSyslogTestCase extends AuditLogToSyslogTestCase {

@BeforeClass
public static void noJDK12() {
public static void noJDK12Plus() {
Assume.assumeFalse("Avoiding JDK 12 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "12".equals(System.getProperty("java.specification.version")));
Assume.assumeFalse("Avoiding JDK 13 due to https://bugs.openjdk.java.net/browse/JDK-8219658", "13".equals(System.getProperty("java.specification.version")));
}

}

0 comments on commit 0a16a15

Please sign in to comment.
You can’t perform that action at this time.