diff -r 2251ba078bec -r eb7ce841ccec test/compiler/tiered/NonTieredLevelsTest.java --- a/test/compiler/tiered/NonTieredLevelsTest.java Sat Oct 24 16:18:50 2020 +0800 +++ b/test/compiler/tiered/NonTieredLevelsTest.java Sat Oct 24 16:43:47 2020 +0800 @@ -46,8 +46,7 @@ } else if (vmName.endsWith(" Client VM") || vmName.endsWith(" Minimal VM")) { 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 RuntimeException("Unknown VM: " + vmName); }