< prev index next >

test/compiler/stable/TestStableUShort.java

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


  40  *                                 compiler.stable.TestStableUShort
  41  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
  42  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
  43  *                                 -XX:-TieredCompilation
  44  *                                 -XX:-FoldStableValues
  45  *                                 -XX:CompileOnly=::get,::get1
  46  *                                 compiler.stable.TestStableUShort
  47  *
  48  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
  49  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
  50  *                                 -XX:+TieredCompilation -XX:TieredStopAtLevel=1
  51  *                                 -XX:+FoldStableValues
  52  *                                 -XX:CompileOnly=::get,::get1
  53  *                                 compiler.stable.TestStableUShort
  54  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
  55  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
  56  *                                 -XX:+TieredCompilation -XX:TieredStopAtLevel=1
  57  *                                 -XX:-FoldStableValues
  58  *                                 -XX:CompileOnly=::get,::get1
  59  *                                 compiler.stable.TestStableUShort
  60  *
  61  */

  62 package compiler.stable;
  63 
  64 import jdk.internal.vm.annotation.Stable;
  65 
  66 import java.lang.reflect.InvocationTargetException;
  67 
  68 public class TestStableUShort {
  69     static final boolean isStableEnabled = StableConfiguration.isStableEnabled;
  70 
  71     public static void main(String[] args) throws Exception {
  72         run(UShortStable.class);
  73         run(UShortArrayDim1.class);
  74 
  75         if (failed) {
  76             throw new Error("TEST FAILED");
  77         }
  78     }
  79 
  80     /* ==================================================== */
  81 




  40  *                                 compiler.stable.TestStableUShort
  41  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
  42  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
  43  *                                 -XX:-TieredCompilation
  44  *                                 -XX:-FoldStableValues
  45  *                                 -XX:CompileOnly=::get,::get1
  46  *                                 compiler.stable.TestStableUShort
  47  *
  48  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
  49  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
  50  *                                 -XX:+TieredCompilation -XX:TieredStopAtLevel=1
  51  *                                 -XX:+FoldStableValues
  52  *                                 -XX:CompileOnly=::get,::get1
  53  *                                 compiler.stable.TestStableUShort
  54  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
  55  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
  56  *                                 -XX:+TieredCompilation -XX:TieredStopAtLevel=1
  57  *                                 -XX:-FoldStableValues
  58  *                                 -XX:CompileOnly=::get,::get1
  59  *                                 compiler.stable.TestStableUShort

  60  */
  61 
  62 package compiler.stable;
  63 
  64 import jdk.internal.vm.annotation.Stable;
  65 
  66 import java.lang.reflect.InvocationTargetException;
  67 
  68 public class TestStableUShort {
  69     static final boolean isStableEnabled = StableConfiguration.isStableEnabled;
  70 
  71     public static void main(String[] args) throws Exception {
  72         run(UShortStable.class);
  73         run(UShortArrayDim1.class);
  74 
  75         if (failed) {
  76             throw new Error("TEST FAILED");
  77         }
  78     }
  79 
  80     /* ==================================================== */
  81 


< prev index next >