Ignore the tests on all JDK8 and add today's new one. Seems to be broken as well.
authorJaroslav Tulach <jtulach@netbeans.org>
Mon, 24 Aug 2015 23:02:20 +0200
changeset 9579cef815b0757
parent 956 3e051dd888c4
child 958 17a8ef18dbc7
Ignore the tests on all JDK8 and add today's new one. Seems to be broken as well.
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	Mon Aug 24 22:37:29 2015 +0200
     1.2 +++ b/boot-script/src/test/java/net/java/html/boot/script/ko4j/KnockoutEnvJSTest.java	Mon Aug 24 23:02:20 2015 +0200
     1.3 @@ -153,11 +153,9 @@
     1.4              return "Broken due to JDK-8047764";
     1.5          }
     1.6          if (
     1.7 -            !"1.8.0_05-b13".equals(ver) &&
     1.8 -            !"1.8.0_11-b12".equals(ver)
     1.9 +            !ver.startsWith("1.8.0_")
    1.10          ) {
    1.11 -            // we know that 1.8.0_05 and 1.8.0_11 are broken,
    1.12 -            // let's not speculate about anything else
    1.13 +            // 1.8.0_ are and will remain broken
    1.14              return null;
    1.15          }
    1.16          switch (methodName) {
    1.17 @@ -168,6 +166,8 @@
    1.18              case "archetypeArrayModificationVisible":
    1.19              case "noLongerNeededArrayElementsCanDisappear":
    1.20                  return "Does not work on JDK8, due to JDK-8046013";
    1.21 +            case "modifyRadioValueOnEnum":
    1.22 +                return "Does not work on JDK8";
    1.23          }
    1.24          return null;
    1.25      }