< prev index next >

test/compiler/intrinsics/sha/cli/TestUseSHAOptionOnUnsupportedCPU.java

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

*** 26,41 **** * @bug 8035968 * @summary Verify UseSHA option processing on unsupported CPU. * @library /testlibrary /test/lib testcases / * @modules java.base/jdk.internal.misc * java.management ! * @build TestUseSHAOptionOnUnsupportedCPU * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions ! * -XX:+WhiteBoxAPI TestUseSHAOptionOnUnsupportedCPU */ public class TestUseSHAOptionOnUnsupportedCPU { public static void main(String args[]) throws Throwable { new SHAOptionsBase( new GenericTestCaseForUnsupportedSparcCPU( SHAOptionsBase.USE_SHA_OPTION), --- 26,51 ---- * @bug 8035968 * @summary Verify UseSHA option processing on unsupported CPU. * @library /testlibrary /test/lib testcases / * @modules java.base/jdk.internal.misc * java.management ! * @build compiler.intrinsics.sha.cli.TestUseSHAOptionOnUnsupportedCPU * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions ! * -XX:+WhiteBoxAPI ! * compiler.intrinsics.sha.cli.TestUseSHAOptionOnUnsupportedCPU */ + + package compiler.intrinsics.sha.cli; + + import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForOtherCPU; + import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForUnsupportedAArch64CPU; + import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForUnsupportedSparcCPU; + import compiler.intrinsics.sha.cli.testcases.GenericTestCaseForUnsupportedX86CPU; + import compiler.intrinsics.sha.cli.testcases.UseSHASpecificTestCaseForUnsupportedCPU; + public class TestUseSHAOptionOnUnsupportedCPU { public static void main(String args[]) throws Throwable { new SHAOptionsBase( new GenericTestCaseForUnsupportedSparcCPU( SHAOptionsBase.USE_SHA_OPTION),
< prev index next >