changeset 29336 | b287769dcff1 |
parent 28384 | 918bbbe51796 |
child 29678 | dd2f3932c21e |
--- a/hotspot/test/compiler/codecache/jmx/UsageThresholdIncreasedTest.java Wed Feb 18 16:59:56 2015 +0300 +++ b/hotspot/test/compiler/codecache/jmx/UsageThresholdIncreasedTest.java Thu Feb 19 23:47:01 2015 +0300 @@ -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(); + } } }