< prev index next >

test/java/util/concurrent/tck/AtomicIntegerFieldUpdaterTest.java

Print this page

        

@@ -140,21 +140,21 @@
     }
 
     /**
      * construction using private field from subclass throws RuntimeException
      */
-    public void testPrivateFieldInSubclass() {
+    public void exclude_8187607_testPrivateFieldInSubclass() {
         AtomicIntegerFieldUpdaterTestSubclass s =
             new AtomicIntegerFieldUpdaterTestSubclass();
         s.checkPrivateAccess();
     }
 
     /**
      * construction from unrelated class; package access is allowed,
      * private access is not
      */
-    public void testUnrelatedClassAccess() {
+    public void exclude_8187607_testUnrelatedClassAccess() {
         new UnrelatedClass().checkPackageAccess(this);
         new UnrelatedClass().checkPrivateAccess(this);
     }
 
     /**
< prev index next >