< prev index next >

test/compiler/c2/Test6732154.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 25,36 **** /** * @test * @bug 6732154 * @summary REG: Printing an Image using image/gif doc flavor crashes the VM, Solsparc * ! * @run main/othervm -Xcomp -XX:CompileOnly="Test6732154::ascii85Encode" Test6732154 */ public class Test6732154 { // Exact copy of sun.print.PSPrinterJob.ascii85Encode([b)[b private byte[] ascii85Encode(byte[] inArr) { byte[] outArr = new byte[((inArr.length+4) * 5 / 4) + 2]; --- 25,41 ---- /** * @test * @bug 6732154 * @summary REG: Printing an Image using image/gif doc flavor crashes the VM, Solsparc * ! * @run main/othervm -Xcomp ! * -XX:CompileCommand=compileonly,compiler.c2.Test6732154::ascii85Encode ! * compiler.c2.Test6732154 */ + + package compiler.c2; + public class Test6732154 { // Exact copy of sun.print.PSPrinterJob.ascii85Encode([b)[b private byte[] ascii85Encode(byte[] inArr) { byte[] outArr = new byte[((inArr.length+4) * 5 / 4) + 2];
< prev index next >