Java Code Examples for com.oracle.testlibrary.jsr292.CodeCacheOverflowProcessor#runMHTest()
The following examples show how to use
com.oracle.testlibrary.jsr292.CodeCacheOverflowProcessor#runMHTest() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MethodHandlesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
@Test public void testUserClassInSignature() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testUserClassInSignature0); }
Example 2
Source File: MethodHandlesTest.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testConvertArguments() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testConvertArguments0); }
Example 3
Source File: MethodHandlesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
@Test public void testArrayElementSetter() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testArrayElementSetter0); }
Example 4
Source File: MethodHandlesTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testArrayElementGetter() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testArrayElementGetter0); }
Example 5
Source File: MethodHandlesTest.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
@Test // SLOW public void testCastFailure() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testCastFailure0); }
Example 6
Source File: TestCatchExceptionWithVarargs.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Throwable { CodeCacheOverflowProcessor .runMHTest(TestCatchExceptionWithVarargs::test); }
Example 7
Source File: MethodHandlesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
@Test public void testFindStaticSetter() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFindStaticSetter0); }
Example 8
Source File: MethodHandlesTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testFindStaticGetter() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFindStaticGetter0); }
Example 9
Source File: MethodHandlesTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
@Test // SLOW public void testSpreadArguments() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testSpreadArguments0); CodeCacheOverflowProcessor.runMHTest(this::testSpreadArguments1); }
Example 10
Source File: MethodHandlesTest.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
@Test public void testFindConstructor() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFindConstructor0); }
Example 11
Source File: MethodHandlesTest.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
@Test // SLOW public void testInsertArguments() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testInsertArguments0); }
Example 12
Source File: MethodHandlesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
@Test public void testFindVirtualClone() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFindVirtualClone0); }
Example 13
Source File: MethodHandlesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
@Test public void testGuardWithTest() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testGuardWithTest0); }
Example 14
Source File: MethodHandlesTest.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testBind() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testBind0); }
Example 15
Source File: MethodHandlesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
@Test public void testDropArguments() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testDropArguments0); }
Example 16
Source File: MethodHandlesTest.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testFindVirtualClone() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFindVirtualClone0); }
Example 17
Source File: MethodHandlesTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testFoldArguments() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFoldArguments0); }
Example 18
Source File: MethodHandlesTest.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testFindGetter() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testFindGetter0); }
Example 19
Source File: MethodHandlesTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
@Test public void testUserClassInSignature() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testUserClassInSignature0); }
Example 20
Source File: MethodHandlesTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
@Test public void testCollectArguments() throws Throwable { CodeCacheOverflowProcessor.runMHTest(this::testCollectArguments0); }