< prev index next >

test/compiler/intrinsics/mathexact/sanity/DecrementExactLongTest.java

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

*** 24,47 **** /* * @test * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * @build DecrementExactLongTest * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+IgnoreUnrecognizedVMOptions -XX:+WhiteBoxAPI -XX:+LogCompilation ! * -XX:CompileCommand=compileonly,MathIntrinsic*::execMathMethod ! * -XX:LogFile=hs_neg.log -XX:-UseMathExactIntrinsics DecrementExactLongTest * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+IgnoreUnrecognizedVMOptions -XX:+WhiteBoxAPI -XX:+LogCompilation ! * -XX:CompileCommand=compileonly,MathIntrinsic*::execMathMethod ! * -XX:LogFile=hs.log -XX:+UseMathExactIntrinsics DecrementExactLongTest * @run driver compiler.testlibrary.intrinsics.Verifier hs_neg.log hs.log */ public class DecrementExactLongTest { public static void main(String[] args) throws Exception { new IntrinsicBase.LongTest(MathIntrinsic.LongIntrinsic.Decrement).test(); } --- 24,52 ---- /* * @test * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * ! * @build compiler.intrinsics.mathexact.sanity.DecrementExactLongTest * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+IgnoreUnrecognizedVMOptions -XX:+WhiteBoxAPI -XX:+LogCompilation ! * -XX:CompileCommand=compileonly,compiler.intrinsics.mathexact.sanity.MathIntrinsic*::execMathMethod ! * -XX:LogFile=hs_neg.log -XX:-UseMathExactIntrinsics ! * compiler.intrinsics.mathexact.sanity.DecrementExactLongTest * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+IgnoreUnrecognizedVMOptions -XX:+WhiteBoxAPI -XX:+LogCompilation ! * -XX:CompileCommand=compileonly,compiler.intrinsics.mathexact.sanity.MathIntrinsic*::execMathMethod ! * -XX:LogFile=hs.log -XX:+UseMathExactIntrinsics ! * compiler.intrinsics.mathexact.sanity.DecrementExactLongTest * @run driver compiler.testlibrary.intrinsics.Verifier hs_neg.log hs.log */ + package compiler.intrinsics.mathexact.sanity; + public class DecrementExactLongTest { public static void main(String[] args) throws Exception { new IntrinsicBase.LongTest(MathIntrinsic.LongIntrinsic.Decrement).test(); }
< prev index next >