8240226: DeflateIn_InflateOut.java test incorrectly assumes size of compressed file
Reviewed-by: martin, alanb
This commit is contained in:
parent
8a79f26795
commit
b38f3cf3bd
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user