< prev index next >

test/jdk/java/io/InputStream/ReadParams.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2010, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1998, 2017, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 21,31 **** * questions. */ /* * @test ! * @bug 4008296 4008293 4190090 4193729 * @summary Check for correct handling of parameters to * XXXXInputStream.read(b, off, len). * */ --- 21,31 ---- * questions. */ /* * @test ! * @bug 4008296 4008293 4190090 4193729 4358774 * @summary Check for correct handling of parameters to * XXXXInputStream.read(b, off, len). * */
*** 195,204 **** --- 195,209 ---- (new ByteArrayInputStream(bos.toByteArray())); doTest(ifs); doTest1(ifs); ifs.close(); + InputStream nis = InputStream.nullStream(); + doTest(nis); + doTest1(nis); + nis.close(); + /* cleanup */ fn.delete(); } }
< prev index next >