< prev index next >

test/compiler/tiered/NonTieredLevelsTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test NonTieredLevelsTest
  26  * @library /testlibrary /test/lib /
  27  * @modules java.base/jdk.internal.misc
  28  * @modules java.management
  29  * @ignore 8157984
  30  * @build NonTieredLevelsTest
  31  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  32  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  33  * @run main/othervm -Xbootclasspath/a:. -XX:-TieredCompilation
  34  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-UseCounterDecay
  35  *                   -XX:CompileCommand=compileonly,compiler.whitebox.SimpleTestCaseHelper::*
  36  *                   NonTieredLevelsTest
  37  * @summary Verify that only one level can be used
  38  * @author igor.ignatyev@oracle.com
  39  */
  40 
  41 import java.util.function.IntPredicate;
  42 import compiler.whitebox.CompilerWhiteBoxTest;
  43 
  44 public class NonTieredLevelsTest extends CompLevelsTest {
  45     private static final int AVAILABLE_COMP_LEVEL;
  46     private static final IntPredicate IS_AVAILABLE_COMPLEVEL;
  47     static {
  48         String vmName = System.getProperty("java.vm.name");
  49         if (vmName.endsWith(" Server VM")) {




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test NonTieredLevelsTest
  26  * @library /testlibrary /test/lib /
  27  * @modules java.base/jdk.internal.misc
  28  * @modules java.management
  29  * @requires vm.opt.TieredStopAtLevel!=1 & vm.opt.TieredStopAtLevel!=2 & vm.opt.TieredStopAtLevel!=3
  30  * @build NonTieredLevelsTest
  31  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  32  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  33  * @run main/othervm -Xbootclasspath/a:. -XX:-TieredCompilation
  34  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-UseCounterDecay
  35  *                   -XX:CompileCommand=compileonly,compiler.whitebox.SimpleTestCaseHelper::*
  36  *                   NonTieredLevelsTest
  37  * @summary Verify that only one level can be used
  38  * @author igor.ignatyev@oracle.com
  39  */
  40 
  41 import java.util.function.IntPredicate;
  42 import compiler.whitebox.CompilerWhiteBoxTest;
  43 
  44 public class NonTieredLevelsTest extends CompLevelsTest {
  45     private static final int AVAILABLE_COMP_LEVEL;
  46     private static final IntPredicate IS_AVAILABLE_COMPLEVEL;
  47     static {
  48         String vmName = System.getProperty("java.vm.name");
  49         if (vmName.endsWith(" Server VM")) {


< prev index next >