mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-29 12:38:24 +00:00
8068461: compiler/codecache/jmx/UsageThresholdIncreasedTest.java failed: java.lang.RuntimeException: Usage threshold was hit: 1 times for CodeHeap 'non-nmethods'
Added filter for invalid testcase Reviewed-by: kvn, iignatyev
This commit is contained in:
parent
55df61e264
commit
c71eca0cbf
@ -51,7 +51,9 @@ public class UsageThresholdIncreasedTest {
|
||||
|
||||
public static void main(String[] args) {
|
||||
for (BlobType btype : BlobType.getAvailable()) {
|
||||
new UsageThresholdIncreasedTest(btype).runTest();
|
||||
if (CodeCacheUtils.isCodeHeapPredictable(btype)) {
|
||||
new UsageThresholdIncreasedTest(btype).runTest();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user