test/compiler/classUnloading/anonymousClass/TestAnonymousClassUnloading.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff test/compiler/classUnloading/anonymousClass/TestAnonymousClassUnloading.java

test/compiler/classUnloading/anonymousClass/TestAnonymousClassUnloading.java

Print this page

        

*** 19,29 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! import sun.hotspot.WhiteBox; import sun.misc.Unsafe; import sun.misc.IOUtils; import java.lang.reflect.Method; import java.net.URL; --- 19,29 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! import jdk.testlib.WhiteBox; import sun.misc.Unsafe; import sun.misc.IOUtils; import java.lang.reflect.Method; import java.net.URL;
*** 31,45 **** /* * @test TestAnonymousClassUnloading * @bug 8054402 * @summary "Tests unloading of anonymous classes." ! * @library /testlibrary /testlibrary/whitebox * @compile TestAnonymousClassUnloading.java * @run main ClassFileInstaller TestAnonymousClassUnloading ! * sun.hotspot.WhiteBox ! * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-BackgroundCompilation TestAnonymousClassUnloading */ public class TestAnonymousClassUnloading { private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox(); private static final Unsafe UNSAFE = Unsafe.getUnsafe(); --- 31,45 ---- /* * @test TestAnonymousClassUnloading * @bug 8054402 * @summary "Tests unloading of anonymous classes." ! * @library /testlibrary /../../test/lib * @compile TestAnonymousClassUnloading.java * @run main ClassFileInstaller TestAnonymousClassUnloading ! * jdk.testlib.WhiteBox ! * jdk.testlib.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-BackgroundCompilation TestAnonymousClassUnloading */ public class TestAnonymousClassUnloading { private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox(); private static final Unsafe UNSAFE = Unsafe.getUnsafe();
test/compiler/classUnloading/anonymousClass/TestAnonymousClassUnloading.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File