< prev index next >

test/compiler/profiling/TestUnexpectedProfilingMismatch.java

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

*** 23,38 **** /* * @test * @bug 8027631 * @summary profiling of arguments at calls cannot rely on signature of callee for types - * @run main/othervm -XX:-BackgroundCompilation -XX:TieredStopAtLevel=3 -XX:TypeProfileLevel=111 -XX:Tier3InvocationThreshold=200 -XX:Tier0InvokeNotifyFreqLog=7 TestUnexpectedProfilingMismatch * */ ! import java.lang.invoke.*; public class TestUnexpectedProfilingMismatch { static class A { } --- 23,44 ---- /* * @test * @bug 8027631 * @summary profiling of arguments at calls cannot rely on signature of callee for types * + * @run main/othervm -XX:-BackgroundCompilation -XX:TieredStopAtLevel=3 -XX:TypeProfileLevel=111 + * -XX:Tier3InvocationThreshold=200 -XX:Tier0InvokeNotifyFreqLog=7 + * compiler.profiling.TestUnexpectedProfilingMismatch */ ! package compiler.profiling; + import java.lang.invoke.MethodHandle; + import java.lang.invoke.MethodHandles; + import java.lang.invoke.MethodType; + public class TestUnexpectedProfilingMismatch { static class A { }
< prev index next >