< prev index next >

test/compiler/jvmci/jdk.vm.ci.runtime.test/src/jdk/vm/ci/runtime/test/TestJavaType.java

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


  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  27  * @library ../../../../../
  28  * @modules jdk.vm.ci/jdk.vm.ci.meta
  29  *          jdk.vm.ci/jdk.vm.ci.runtime
  30  *          java.base/jdk.internal.misc
  31  * @build jdk.vm.ci.runtime.test.TestJavaType
  32  * @run junit/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI jdk.vm.ci.runtime.test.TestJavaType
  33  */
  34 
  35 package jdk.vm.ci.runtime.test;
  36 
  37 import static org.junit.Assert.assertEquals;
  38 import jdk.vm.ci.meta.JavaKind;
  39 import jdk.vm.ci.meta.JavaType;
  40 
  41 import org.junit.Test;
  42 


  43 /**
  44  * Tests for {@link JavaType}.
  45  */
  46 public class TestJavaType extends TypeUniverse {
  47 
  48     public TestJavaType() {
  49     }
  50 
  51     @Test
  52     public void getJavaKindTest() {
  53         for (Class<?> c : classes) {
  54             JavaType type = metaAccess.lookupJavaType(c);
  55             JavaKind expected = JavaKind.fromJavaClass(c);
  56             JavaKind actual = type.getJavaKind();
  57             assertEquals(expected, actual);
  58         }
  59     }
  60 }


  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  27  * @library ../../../../../
  28  * @modules jdk.vm.ci/jdk.vm.ci.meta
  29  *          jdk.vm.ci/jdk.vm.ci.runtime
  30  *          java.base/jdk.internal.misc
  31  * @build jdk.vm.ci.runtime.test.TestJavaType
  32  * @run junit/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI jdk.vm.ci.runtime.test.TestJavaType
  33  */
  34 
  35 package jdk.vm.ci.runtime.test;
  36 

  37 import jdk.vm.ci.meta.JavaKind;
  38 import jdk.vm.ci.meta.JavaType;

  39 import org.junit.Test;
  40 
  41 import static org.junit.Assert.assertEquals;
  42 
  43 /**
  44  * Tests for {@link JavaType}.
  45  */
  46 public class TestJavaType extends TypeUniverse {
  47 
  48     public TestJavaType() {
  49     }
  50 
  51     @Test
  52     public void getJavaKindTest() {
  53         for (Class<?> c : classes) {
  54             JavaType type = metaAccess.lookupJavaType(c);
  55             JavaKind expected = JavaKind.fromJavaClass(c);
  56             JavaKind actual = type.getJavaKind();
  57             assertEquals(expected, actual);
  58         }
  59     }
  60 }
< prev index next >