Disable Nashorn ko test on JDK8 u25 and u40 because of JDK-8047764
authorJaroslav Tulach <jtulach@netbeans.org>
Sun, 09 Nov 2014 16:07:41 +0100
changeset 8663499df087dc3
parent 865 e91d7eda0b9d
child 867 6ed4df4c1e29
child 878 8acd05d810c3
Disable Nashorn ko test on JDK8 u25 and u40 because of JDK-8047764
boot-script/src/test/java/net/java/html/boot/script/ko4j/KnockoutEnvJSTest.java
     1.1 --- a/boot-script/src/test/java/net/java/html/boot/script/ko4j/KnockoutEnvJSTest.java	Sun Nov 09 15:29:29 2014 +0100
     1.2 +++ b/boot-script/src/test/java/net/java/html/boot/script/ko4j/KnockoutEnvJSTest.java	Sun Nov 09 16:07:41 2014 +0100
     1.3 @@ -147,6 +147,12 @@
     1.4      private static String skipMsg(String methodName) {
     1.5          final String ver = System.getProperty("java.runtime.version"); // NOI18N
     1.6          if (
     1.7 +            ver.startsWith("1.8.0_25") ||
     1.8 +            ver.startsWith("1.8.0_40") 
     1.9 +        ) {
    1.10 +            return "Broken due to JDK-8047764";
    1.11 +        }
    1.12 +        if (
    1.13              !"1.8.0_05-b13".equals(ver) &&
    1.14              !"1.8.0_11-b12".equals(ver) 
    1.15          ) {