< prev index next >

test/compiler/intrinsics/zip/TestCRC32.java

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

*** 24,39 **** /** * @test * @bug 8143012 * @summary CRC32 Intrinsics support on SPARC * ! * @run main/othervm/timeout=720 -Xbatch TestCRC32 -m */ import java.nio.ByteBuffer; - import java.util.zip.Checksum; import java.util.zip.CRC32; public class TestCRC32 { public static void main(String[] args) { int offset = Integer.getInteger("offset", 0); int msgSize = Integer.getInteger("msgSize", 512); --- 24,41 ---- /** * @test * @bug 8143012 * @summary CRC32 Intrinsics support on SPARC * ! * @run main/othervm/timeout=720 -Xbatch compiler.intrinsics.zip.TestCRC32 -m */ + package compiler.intrinsics.zip; + import java.nio.ByteBuffer; import java.util.zip.CRC32; + import java.util.zip.Checksum; public class TestCRC32 { public static void main(String[] args) { int offset = Integer.getInteger("offset", 0); int msgSize = Integer.getInteger("msgSize", 512);
< prev index next >