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 authored and bstansberry committed Apr 8, 2019
1 parent 3ecb1ea commit e74605f29e833a361ba9e3967bdd8789b15a2a64
@@ -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 e74605f

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