annotate test/runtime/LoadClass/ShowClassLoader.java @ 20996:5e78d067ebbe

Do not build IGV in gate when running on SPARC
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Thu, 16 Apr 2015 19:00:45 +0200
parents 7d68a5b1069d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20512
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
1 /*
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
4 *
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
7 * published by the Free Software Foundation.
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
8 *
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
13 * accompanied this code).
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
14 *
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
18 *
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
21 * questions.
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
22 */
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
23
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
24 /*
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
25 * @test
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
26 * @key regression
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
27 * @bug 8058927
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
28 * @summary Make sure array class has the right class loader
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
29 * @run main ShowClassLoader
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
30 */
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
31
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
32 public class ShowClassLoader {
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
33
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
34 public static void main(String[] args) {
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
35 Object[] oa = new Object[0];
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
36 ShowClassLoader[] sa = new ShowClassLoader[0];
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
37
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
38 System.out.println("Classloader for Object[] is " + oa.getClass().getClassLoader());
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
39 System.out.println("Classloader for SCL[] is " + sa.getClass().getClassLoader() );
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
40
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
41 if (sa.getClass().getClassLoader() == null) {
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
42 throw new RuntimeException("Wrong class loader");
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
43 }
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
44 }
7d68a5b1069d 8058927: ATG throws ClassNotFoundException
coleenp
parents:
diff changeset
45 }