--- old/test/jdk/jdk/nio/zipfs/MultiReleaseJarTest.java 2018-01-30 10:43:48.317279241 -0800 +++ new/test/jdk/jdk/nio/zipfs/MultiReleaseJarTest.java 2018-01-30 10:43:47.925279224 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 8144355 8144062 8176709 + * @bug 8144355 8144062 8176709 8194070 * @summary Test aliasing additions to ZipFileSystem for multi-release jar files * @library /lib/testlibrary/java/util/jar * @build Compiler JarBuilder CreateMultiReleaseTestJars @@ -48,7 +48,7 @@ import org.testng.annotations.*; public class MultiReleaseJarTest { - final private int MAJOR_VERSION = Runtime.version().major(); + final private int MAJOR_VERSION = Math.min(Runtime.version().major(), 10); final private String userdir = System.getProperty("user.dir","."); final private CreateMultiReleaseTestJars creator = new CreateMultiReleaseTestJars();