diff options
Diffstat (limited to 'test/952-invoke-custom/src/Main.java')
| -rw-r--r-- | test/952-invoke-custom/src/Main.java | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/test/952-invoke-custom/src/Main.java b/test/952-invoke-custom/src/Main.java index 0b1c1fffe56..d2250a9647b 100644 --- a/test/952-invoke-custom/src/Main.java +++ b/test/952-invoke-custom/src/Main.java @@ -74,18 +74,15 @@ public class Main extends TestBase { TestLinkerMethodMinimalArguments.FAILURE_TYPE_NONE, 10, 13); } - private static void TestInvokeCustomWithConcurrentThreads() throws Throwable { - // This is a concurrency test that attempts to run invoke-custom on the same - // call site. - TestInvokeCustomWithConcurrentThreads.test(); - } - public static void main(String[] args) throws Throwable { TestUninitializedCallSite(); TestLinkerMethodMinimalArguments(); TestLinkerMethodMultipleArgumentTypes(); TestLinkerUnrelatedBSM.test(); - TestInvokeCustomWithConcurrentThreads(); + TestInvokeCustomWithConcurrentThreads.test(); TestInvocationKinds.test(); + TestDynamicBootstrapArguments.test(); + TestBadBootstrapArguments.test(); + TestVariableArityLinkerMethod.test(); } } |
