8240226: DeflateIn_InflateOut.java test incorrectly assumes size of compressed file

Reviewed-by: martin, alanb
This commit is contained in:
Volker Simonis 2020-02-28 19:49:39 +01:00
parent 8a79f26795
commit b38f3cf3bd

View File

@ -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
@ -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);
@ -218,6 +216,8 @@ public class DeflateIn_InflateOut {
public static void realMain(String[] args) throws Throwable {
new Random(new Date().getTime()).nextBytes(data);
ArrayReadWrite();
ArrayReadByteWrite();