Skip to content

Commit

Permalink
Merge pull request #609 from r30shah/testRestSizeJDK8
Browse files Browse the repository at this point in the history
JDK8: Backport 8240226 from JDK17 to fix DeflateIn_InflateOut.skipBytes
  • Loading branch information
pshipton authored Sep 21, 2022
2 parents 8e8d4d3 + 143668c commit a7b0cf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jdk/test/java/util/zip/DeflateIn_InflateOut.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 2020, 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
Expand Down Expand Up @@ -42,8 +42,6 @@ public class DeflateIn_InflateOut {
private static InflaterOutputStream ios;

private static void reset() {
new Random(new Date().getTime()).nextBytes(data);

bais = new ByteArrayInputStream(data);
dis = new DeflaterInputStream(bais);

Expand Down Expand Up @@ -218,6 +216,8 @@ private static void SkipBytes() throws Throwable {


public static void realMain(String[] args) throws Throwable {
new Random(new Date().getTime()).nextBytes(data);

ArrayReadWrite();

ArrayReadByteWrite();
Expand Down

0 comments on commit a7b0cf7

Please sign in to comment.