< prev index next >

test/compiler/jvmci/compilerToVM/LookupTypeTest.java

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

*** 38,54 **** package compiler.jvmci.compilerToVM; import compiler.jvmci.common.testcases.DoNotExtendClass; import compiler.jvmci.common.testcases.MultiSubclassedClass; import compiler.jvmci.common.testcases.SingleSubclass; - import java.util.HashSet; - import java.util.Set; - import jdk.vm.ci.hotspot.CompilerToVMHelper; - import jdk.vm.ci.hotspot.HotSpotResolvedObjectType; import jdk.test.lib.Asserts; import jdk.test.lib.Utils; public class LookupTypeTest { public static void main(String args[]) { LookupTypeTest test = new LookupTypeTest(); for (TestCase tcase : createTestCases()) { test.runTest(tcase); --- 38,55 ---- package compiler.jvmci.compilerToVM; import compiler.jvmci.common.testcases.DoNotExtendClass; import compiler.jvmci.common.testcases.MultiSubclassedClass; import compiler.jvmci.common.testcases.SingleSubclass; import jdk.test.lib.Asserts; import jdk.test.lib.Utils; + import jdk.vm.ci.hotspot.CompilerToVMHelper; + import jdk.vm.ci.hotspot.HotSpotResolvedObjectType; + import java.util.HashSet; + import java.util.Set; + public class LookupTypeTest { public static void main(String args[]) { LookupTypeTest test = new LookupTypeTest(); for (TestCase tcase : createTestCases()) { test.runTest(tcase);
< prev index next >