< prev index next >

test/compiler/intrinsics/mathexact/sanity/SubtractExactIntTest.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 SubtractExactIntTest * @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 SubtractExactIntTest * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions * -XX:+IgnoreUnrecognizedVMOptions -XX:+WhiteBoxAPI -XX:+LogCompilation ! * -XX:CompileCommand=compileonly,MathIntrinsic*::execMathMethod ! * -XX:LogFile=hs.log -XX:+UseMathExactIntrinsics SubtractExactIntTest * @run driver compiler.testlibrary.intrinsics.Verifier hs_neg.log hs.log */ public class SubtractExactIntTest { public static void main(String[] args) throws Exception { new IntrinsicBase.IntTest(MathIntrinsic.IntIntrinsic.Subtract).test(); } --- 24,52 ---- /* * @test * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.management ! * ! * @build compiler.intrinsics.mathexact.sanity.SubtractExactIntTest * @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.SubtractExactIntTest * @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.SubtractExactIntTest * @run driver compiler.testlibrary.intrinsics.Verifier hs_neg.log hs.log */ + package compiler.intrinsics.mathexact.sanity; + public class SubtractExactIntTest { public static void main(String[] args) throws Exception { new IntrinsicBase.IntTest(MathIntrinsic.IntIntrinsic.Subtract).test(); }
< prev index next >