hotspot/test/runtime/testlibrary/ClassUnloadCommon.java
author ctornqvi
Tue, 07 May 2013 21:36:59 +0200
changeset 17311 6ba3841cb7f9
child 35917 463d67f86eaa
permissions -rw-r--r--
8009577: Test test/closed/runtime/classunload broken Summary: Fixed tests to use new way of utilizing the WB API, fixed issue with where custom classloader got the classes from Reviewed-by: collins, mgerdin, zgu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17311
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     1
/*
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     4
 *
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     7
 * published by the Free Software Foundation.
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     8
 *
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    13
 * accompanied this code).
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    14
 *
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    18
 *
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    21
 * questions.
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    22
 */
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    23
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    24
import java.io.File;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    25
import java.net.MalformedURLException;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    26
import java.net.URL;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    27
import java.net.URLClassLoader;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    28
import java.nio.file.Paths;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    29
import java.util.ArrayList;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    30
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    31
public class ClassUnloadCommon {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    32
    public static class TestFailure extends RuntimeException {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    33
        TestFailure(String msg) {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    34
            super(msg);
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    35
        }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    36
    }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    37
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    38
    public static void failIf(boolean value, String msg) {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    39
        if (value) throw new TestFailure("Test failed: " + msg);
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    40
    }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    41
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    42
    private static volatile Object dummy = null;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    43
    private static void allocateMemory(int kilobytes) {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    44
        ArrayList<byte[]> l = new ArrayList<>();
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    45
        dummy = l;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    46
        for (int i = kilobytes; i > 0; i -= 1) {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    47
            l.add(new byte[1024]);
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    48
        }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    49
        l = null;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    50
        dummy = null;
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    51
    }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    52
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    53
    public static void triggerUnloading() {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    54
        allocateMemory(16 * 1024); // yg size is 8m with cms, force young collection
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    55
        System.gc();
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    56
    }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    57
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    58
    public static ClassLoader newClassLoader() {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    59
        try {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    60
            return new URLClassLoader(new URL[] {
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    61
                Paths.get(System.getProperty("test.classes",".") + File.separatorChar + "classes").toUri().toURL(),
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    62
            }, null);
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    63
        } catch (MalformedURLException e){
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    64
            throw new RuntimeException("Unexpected URL conversion failure", e);
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    65
        }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    66
    }
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    67
6ba3841cb7f9 8009577: Test test/closed/runtime/classunload broken
ctornqvi
parents:
diff changeset
    68
}