< prev index next >

test/compiler/loopopts/TestLogSum.java

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

*** 23,40 **** /* * @test * @bug 8046516 * @summary Segmentation fault in JVM (easily reproducible) ! * @run main/othervm -XX:-TieredCompilation -Xbatch TestLogSum * @author jackkamm@gmail.com */ import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; public class TestLogSum { public static void main(String[] args) { double sum; for (int i = 0; i < 6; i++) { --- 23,44 ---- /* * @test * @bug 8046516 * @summary Segmentation fault in JVM (easily reproducible) ! * ! * @run main/othervm -XX:-TieredCompilation -Xbatch compiler.loopopts.TestLogSum * @author jackkamm@gmail.com */ + package compiler.loopopts; + import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; + public class TestLogSum { public static void main(String[] args) { double sum; for (int i = 0; i < 6; i++) {
< prev index next >