test/hotspot/jtreg/runtime/modules/ClassLoaderNoUnnamedModule.java
author iignatyev
Thu, 02 Aug 2018 14:40:55 -0700
changeset 51287 7b1ddbafa134
parent 50378 fceae121625e
permissions -rw-r--r--
8208655: use JTreg skipped status in hotspot tests Reviewed-by: kvn, hseigel, iklam
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50378
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     1
/*
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     4
 *
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     7
 * published by the Free Software Foundation.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     8
 *
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    13
 * accompanied this code).
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    14
 *
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    18
 *
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    21
 * questions.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    22
 */
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    23
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    24
import jdk.internal.misc.Unsafe;
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    25
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    26
public class ClassLoaderNoUnnamedModule {
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    27
    static final Unsafe UNSAFE = Unsafe.getUnsafe();
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    28
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    29
    class TestClass extends ClassLoader {
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    30
        public boolean calledConstructor = false;
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    31
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    32
        public TestClass() {
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    33
            calledConstructor = true;
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    34
        }
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    35
    }
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    36
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    37
    static void testConstructorCall() throws Exception {
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    38
        // Use Unsafe allocateInstance to construct an instance of TestClass
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    39
        // which does not invoke its super's, java.lang.ClassLoader, constructor.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    40
        // An unnamed module for this ClassLoader is not created.
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    41
        TestClass tc = (TestClass)UNSAFE.allocateInstance(TestClass.class);
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    42
        System.out.println("tc = " + tc + "tc's ctor called = " + tc.calledConstructor);
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    43
        Module unnamed_module = tc.getUnnamedModule();
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    44
        if (unnamed_module == null) {
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    45
            System.out.println("The unnamed module for this class loader is null");
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    46
        }
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    47
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    48
        tc.loadClass(String.class.getName());
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    49
        Class.forName(String.class.getName(), false, tc);
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    50
    }
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    51
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    52
    public static void main(String args[]) throws Exception {
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    53
        testConstructorCall();
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    54
    }
fceae121625e 8202758: SIGSEGV calling Class.forName(String,Boolean,ClassLoader) with mocked loader
lfoltan
parents:
diff changeset
    55
}