--- old/test/java/util/zip/ConstructDeflaterInput.java 2016-02-12 20:28:43.681983029 -0800 +++ new/test/java/util/zip/ConstructDeflaterInput.java 2016-02-12 20:28:43.436984099 -0800 @@ -23,7 +23,7 @@ /** * @test - * @bug 4679743 + * @bug 4679743 8148624 * @summary Test parts of DeflaterInputStream code that don't really do I/O. */ @@ -41,10 +41,10 @@ } } + private static MyDeflater def = new MyDeflater(); public static void realMain(String[] args) throws Throwable { ByteArrayInputStream bais = new ByteArrayInputStream( "hello, world".getBytes()); - MyDeflater def = new MyDeflater(); DeflaterInputStream dis = null; byte[] b = new byte[512]; --- old/test/java/util/zip/ConstructInflaterOutput.java 2016-02-12 20:28:44.306980294 -0800 +++ new/test/java/util/zip/ConstructInflaterOutput.java 2016-02-12 20:28:44.062981362 -0800 @@ -23,7 +23,7 @@ /** * @test - * @bug 4679743 + * @bug 4679743 8148624 * @summary Test parts of InflaterOutputStream code that don't really do I/O. */ @@ -41,9 +41,10 @@ } } + private static MyInflater inf = new MyInflater(); + public static void realMain(String[] args) throws Throwable { ByteArrayOutputStream baos = new ByteArrayOutputStream(); - MyInflater inf = new MyInflater(); InflaterOutputStream ios = null; byte[] b = new byte[512];