Merge
authorvlivanov
Mon, 19 Jan 2015 14:14:05 +0000
changeset 28647 f44908f03772
parent 28644 a70f5680dbab (current diff)
parent 28646 1cf6b04a87d8 (diff)
child 28648 102bdbb42723
Merge
--- a/hotspot/test/compiler/codecache/jmx/PoolsIndependenceTest.java	Mon Jan 19 11:35:45 2015 +0000
+++ b/hotspot/test/compiler/codecache/jmx/PoolsIndependenceTest.java	Mon Jan 19 14:14:05 2015 +0000
@@ -98,11 +98,13 @@
             return false;
         });
         for (BlobType bt : BlobType.getAvailable()) {
-            int expectedNotificationsAmount = bt.equals(btype) ? 1 : 0;
-            Asserts.assertEQ(counters.get(bt.getMemoryPool().getName()).get(),
-                    expectedNotificationsAmount, String.format("Unexpected "
-                            + "amount of notifications for pool: %s",
-                            bt.getMemoryPool().getName()));
+            if (CodeCacheUtils.isCodeHeapPredictable(bt)) {
+                int expectedNotificationsAmount = bt.equals(btype) ? 1 : 0;
+                Asserts.assertEQ(counters.get(bt.getMemoryPool().getName()).get(),
+                        expectedNotificationsAmount, String.format("Unexpected "
+                                + "amount of notifications for pool: %s",
+                                bt.getMemoryPool().getName()));
+            }
         }
         try {
             ((NotificationEmitter) ManagementFactory.getMemoryMXBean()).
--- a/hotspot/test/compiler/codecache/jmx/ThresholdNotificationsTest.java	Mon Jan 19 11:35:45 2015 +0000
+++ b/hotspot/test/compiler/codecache/jmx/ThresholdNotificationsTest.java	Mon Jan 19 14:14:05 2015 +0000
@@ -52,7 +52,9 @@
 
     public static void main(String[] args) {
         for (BlobType bt : BlobType.getAvailable()) {
-            new ThresholdNotificationsTest(bt).runTest();
+            if (CodeCacheUtils.isCodeHeapPredictable(bt)) {
+                new ThresholdNotificationsTest(bt).runTest();
+            }
         }
     }
 
--- a/hotspot/test/compiler/loopopts/7052494/Test7052494.java	Mon Jan 19 11:35:45 2015 +0000
+++ b/hotspot/test/compiler/loopopts/7052494/Test7052494.java	Mon Jan 19 14:14:05 2015 +0000
@@ -25,7 +25,6 @@
 /**
  * @test
  * @bug 7052494
- * @ignore 7154567
  * @summary Eclipse test fails on JDK 7 b142
  *
  * @run main/othervm -Xbatch Test7052494