8173300: [TESTBUG]compiler/tiered/NonTieredLevelsTest.java fails with compiler.whitebox.SimpleTestCaseHelper(int) must be compiled
Corrected available compilation levels for client builds. Reviewed-by: kvn
This commit is contained in:
parent
94db4c91c3
commit
ac41b68c15
@ -52,8 +52,7 @@ public class NonTieredLevelsTest extends CompLevelsTest {
|
||||
IS_AVAILABLE_COMPLEVEL = x -> x == COMP_LEVEL_FULL_OPTIMIZATION;
|
||||
} else if (Platform.isClient() || Platform.isMinimal() || Platform.isEmulatedClient()) {
|
||||
AVAILABLE_COMP_LEVEL = COMP_LEVEL_SIMPLE;
|
||||
IS_AVAILABLE_COMPLEVEL = x -> x >= COMP_LEVEL_SIMPLE
|
||||
&& x <= COMP_LEVEL_FULL_PROFILE;
|
||||
IS_AVAILABLE_COMPLEVEL = x -> x == COMP_LEVEL_SIMPLE;
|
||||
} else {
|
||||
throw new Error("TESTBUG: unknown VM: " + Platform.vmName);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user