< prev index next >

test/compiler/jvmci/compilerToVM/LookupSignatureInPoolTest.java

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

*** 45,65 **** * compiler.jvmci.compilerToVM.LookupSignatureInPoolTest */ package compiler.jvmci.compilerToVM; - import compiler.jvmci.compilerToVM.ConstantPoolTestsHelper.DummyClasses; import compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes; - import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.*; import compiler.jvmci.compilerToVM.ConstantPoolTestCase.TestedCPEntry; import compiler.jvmci.compilerToVM.ConstantPoolTestCase.Validator; ! import java.util.HashMap; ! import java.util.Map; import jdk.test.lib.Asserts; import jdk.vm.ci.hotspot.CompilerToVMHelper; import jdk.vm.ci.meta.ConstantPool; /** * Test for {@code jdk.vm.ci.hotspot.CompilerToVM.lookupSignatureInPool} method */ public class LookupSignatureInPoolTest { --- 45,70 ---- * compiler.jvmci.compilerToVM.LookupSignatureInPoolTest */ package compiler.jvmci.compilerToVM; import compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes; import compiler.jvmci.compilerToVM.ConstantPoolTestCase.TestedCPEntry; import compiler.jvmci.compilerToVM.ConstantPoolTestCase.Validator; ! import compiler.jvmci.compilerToVM.ConstantPoolTestsHelper.DummyClasses; import jdk.test.lib.Asserts; import jdk.vm.ci.hotspot.CompilerToVMHelper; import jdk.vm.ci.meta.ConstantPool; + import java.util.HashMap; + import java.util.Map; + + import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.CONSTANT_FIELDREF; + import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.CONSTANT_INTERFACEMETHODREF; + import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.CONSTANT_INVOKEDYNAMIC; + import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.CONSTANT_METHODREF; + /** * Test for {@code jdk.vm.ci.hotspot.CompilerToVM.lookupSignatureInPool} method */ public class LookupSignatureInPoolTest {
< prev index next >