jdk-24/test/hotspot/jtreg/compiler/tiered/TieredModesTest.java
Igor Veresov cc99075c79 8236050: Some compiler tests fail when executed with custom TieredLevel
Make sure TieredStopAtLevel is properly supported for different compilation modes

Reviewed-by: redestad, thartmann
2020-01-07 07:31:28 -08:00

54 lines
2.2 KiB
Java

/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test TieredModesTest
* @summary Check that non-default tiered compilation modes tolerate invalid TieredStopAtLevel values
* @modules java.base/jdk.internal.misc
* java.management
*
* @run main/othervm -XX:+TieredCompilation -XX:CompilationMode=quick-only -XX:TieredStopAtLevel=3
* -XX:CompileCommand=compileonly,compiler.tiered.TieredModesTest::test
* compiler.tiered.TieredModesTest
* @run main/othervm -XX:+TieredCompilation -XX:CompilationMode=high-only -XX:TieredStopAtLevel=3
* -XX:CompileCommand=compileonly,compiler.tiered.TieredModesTest::test
* compiler.tiered.TieredModesTest
* @run main/othervm -XX:+TieredCompilation -XX:CompilationMode=high-only-quick-internal -XX:TieredStopAtLevel=3
* -XX:CompileCommand=compileonly,compiler.tiered.TieredModesTest::test
* compiler.tiered.TieredModesTest
*/
package compiler.tiered;
public class TieredModesTest {
public static int sideEffect = 0;
private static void test() {
sideEffect++;
}
public static void main(String... args) {
for (int i = 0; i < 100_000; i++) {
test();
}
}
}