--- old/test/compiler/codecache/jmx/UsageThresholdIncreasedTest.java 2015-02-12 22:18:20.727949065 +0400 +++ new/test/compiler/codecache/jmx/UsageThresholdIncreasedTest.java 2015-02-12 22:18:20.647949725 +0400 @@ -51,7 +51,9 @@ public static void main(String[] args) { for (BlobType btype : BlobType.getAvailable()) { - new UsageThresholdIncreasedTest(btype).runTest(); + if (CodeCacheUtils.isCodeHeapPredictable(btype)) { + new UsageThresholdIncreasedTest(btype).runTest(); + } } }