comparison test/compiler/stable/TestStableShort.java @ 22983:1ec24746bb40

8038098: [TESTBUG] remove explicit set build flavor from hotspot/test/compiler/* tests Reviewed-by: kvn, iignatyev
author eistepan
date Thu, 23 Apr 2015 13:02:32 +0300
parents ee1c924763d2
children
comparison
equal deleted inserted replaced
22982:0956bdcc671e 22983:1ec24746bb40
51 * java/lang/invoke/TestStableShort$NestedStableField3$A 51 * java/lang/invoke/TestStableShort$NestedStableField3$A
52 * java/lang/invoke/TestStableShort$DefaultValue 52 * java/lang/invoke/TestStableShort$DefaultValue
53 * java/lang/invoke/TestStableShort$DefaultStaticValue 53 * java/lang/invoke/TestStableShort$DefaultStaticValue
54 * java/lang/invoke/TestStableShort$ObjectArrayLowerDim2 54 * java/lang/invoke/TestStableShort$ObjectArrayLowerDim2
55 * 55 *
56 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions 56 * @run main/othervm -Xbootclasspath/a:.
57 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp 57 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
58 * -server -XX:-TieredCompilation 58 * -XX:-TieredCompilation
59 * -XX:+FoldStableValues 59 * -XX:+FoldStableValues
60 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 60 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4
61 * java.lang.invoke.TestStableShort 61 * java.lang.invoke.TestStableShort
62 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions 62 * @run main/othervm -Xbootclasspath/a:.
63 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp 63 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
64 * -server -XX:-TieredCompilation 64 * -XX:-TieredCompilation
65 * -XX:-FoldStableValues 65 * -XX:-FoldStableValues
66 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 66 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4
67 * java.lang.invoke.TestStableShort 67 * java.lang.invoke.TestStableShort
68 * 68 *
69 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions 69 * @run main/othervm -Xbootclasspath/a:.
70 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp 70 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
71 * -server -XX:+TieredCompilation -XX:TieredStopAtLevel=1 71 * -XX:+TieredCompilation -XX:TieredStopAtLevel=1
72 * -XX:+FoldStableValues 72 * -XX:+FoldStableValues
73 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 73 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4
74 * java.lang.invoke.TestStableShort 74 * java.lang.invoke.TestStableShort
75 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions 75 * @run main/othervm -Xbootclasspath/a:.
76 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp 76 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
77 * -server -XX:+TieredCompilation -XX:TieredStopAtLevel=1 77 * -XX:+TieredCompilation -XX:TieredStopAtLevel=1
78 * -XX:-FoldStableValues 78 * -XX:-FoldStableValues
79 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 79 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4
80 * java.lang.invoke.TestStableShort 80 * java.lang.invoke.TestStableShort
81 * 81 *
82 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions
83 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
84 * -client -XX:-TieredCompilation
85 * -XX:+FoldStableValues
86 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4
87 * java.lang.invoke.TestStableShort
88 * @run main/othervm -Xbootclasspath/a:. -XX:+IgnoreUnrecognizedVMOptions
89 * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp
90 * -client -XX:-TieredCompilation
91 * -XX:-FoldStableValues
92 * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4
93 * java.lang.invoke.TestStableShort
94 */ 82 */
95 package java.lang.invoke; 83 package java.lang.invoke;
96 84
97 import java.lang.reflect.InvocationTargetException; 85 import java.lang.reflect.InvocationTargetException;
98 86