Searched refs:tcase (Results 1 - 8 of 8) sorted by relevance

/openjdk9/hotspot/test/compiler/jvmci/compilerToVM/
H A DLookupTypeTest.java54 for (TestCase tcase : createTestCases()) {
55 test.runTest(tcase);
89 private void runTest(TestCase tcase) { argument
90 System.out.println(tcase);
93 metaspaceKlass = CompilerToVMHelper.lookupType(tcase.className,
94 tcase.accessing, tcase.resolve);
96 Asserts.assertNotNull(tcase.expectedException,
98 Asserts.assertFalse(tcase.isPositive,
100 Asserts.assertEQ(t.getClass(), tcase
[all...]
H A DGetVtableIndexForInterfaceTest.java73 for (TestCase tcase : createTestCases()) {
74 test.runTest(tcase);
130 private void runTest(TestCase tcase) throws NoSuchMethodException { argument
131 System.out.println(tcase);
132 Method method = tcase.holder.getDeclaredMethod(tcase.methodName);
134 .lookupType(Utils.toJVMTypeSignature(tcase.receiver),
137 .getResolvedMethod(tcase.holder, method);
144 if (tcase.isPositive || tcase
[all...]
H A DGetClassInitializerTest.java59 for (TestCase tcase : createTestCases()) {
60 test.runTest(tcase);
81 private void runTest(TestCase tcase) { argument
82 System.out.println(tcase);
83 String className = tcase.holder.getName();
85 .lookupType(Utils.toJVMTypeSignature(tcase.holder),
89 if (tcase.isPositive) {
H A DHasFinalizableSubclassTest.java58 for (TestCase tcase : createTestCases()) {
59 test.runTest(tcase);
85 private void runTest(TestCase tcase) { argument
86 System.out.println(tcase);
88 .lookupType(Utils.toJVMTypeSignature(tcase.aClass),
90 Asserts.assertEQ(tcase.expected,
93 + tcase.aClass.getName());
H A DResolveMethodTest.java70 for (TestCase tcase: createTestCases()) {
71 test.runTest(tcase);
131 private void runTest(TestCase tcase) throws NoSuchMethodException { argument
132 System.out.println(tcase);
134 .getResolvedMethod(tcase.holder,
135 tcase.holder.getDeclaredMethod(tcase.methodName));
137 .lookupType(Utils.toJVMTypeSignature(tcase.holder),
140 .lookupType(Utils.toJVMTypeSignature(tcase.caller),
143 .lookupType(Utils.toJVMTypeSignature(tcase
[all...]
H A DGetImplementorTest.java63 for (TestCase tcase : createTestCases()) {
64 test.runTest(tcase);
101 private void runTest(TestCase tcase) { argument
102 System.out.println(tcase);
104 .lookupType(Utils.toJVMTypeSignature(tcase.anInterface),
109 if (tcase.expectedImplementer != null) {
111 .toJVMTypeSignature(tcase.expectedImplementer),
115 "Unexpected implementer for " + tcase.anInterface.getName());
H A DFindUniqueConcreteMethodTest.java67 for (TestCase tcase : createTestCases()) {
68 test.runTest(tcase);
104 private void runTest(TestCase tcase) throws NoSuchMethodException { argument
105 System.out.println(tcase);
106 Method method = tcase.holder.getDeclaredMethod(tcase.methodName);
110 .lookupType(Utils.toJVMTypeSignature(tcase.receiver), getClass(),
114 Asserts.assertEQ(concreteMethod, tcase.isPositive ? testMethod : null,
115 "Unexpected concrete method for " + tcase.methodName);
H A DDebugOutputTest.java147 TestCaseData tcase = TestCaseData.valueOf(arg);
148 CompilerToVMHelper.writeDebugOutput(tcase.getData(),
149 tcase.offset, tcase.length);

Completed in 104 milliseconds