< prev index next >

test/compiler/cpuflags/TestSSE4Disabled.java

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

*** 25,36 **** /* * @test TestSSE4Disabled * @bug 8158214 * @requires (vm.simpleArch == "x64") * @summary Test correct execution without SSE 4. ! * @run main/othervm -Xcomp -XX:UseSSE=3 TestSSE4Disabled */ public class TestSSE4Disabled { public static void main(String args[]) { System.out.println("Passed"); } } --- 25,40 ---- /* * @test TestSSE4Disabled * @bug 8158214 * @requires (vm.simpleArch == "x64") * @summary Test correct execution without SSE 4. ! * ! * @run main/othervm -Xcomp -XX:UseSSE=3 compiler.cpuflags.TestSSE4Disabled */ + + package compiler.cpuflags; + public class TestSSE4Disabled { public static void main(String args[]) { System.out.println("Passed"); } }
< prev index next >