1 /*
2  * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 package nsk.jvmti.GetClassStatus;
25 
26 import java.io.PrintStream;
27 
28 public class getclstat007 {
29 
30     final static int JCK_STATUS_BASE = 95;
31 
check(int i, Class cls, boolean isArray)32     native static void check(int i, Class cls, boolean isArray);
getRes()33     native static int getRes();
34 
main(String args[])35     public static void main(String args[]) {
36         args = nsk.share.jvmti.JVMTITest.commonInit(args);
37 
38         // produce JCK-like exit status.
39         System.exit(run(args, System.out) + JCK_STATUS_BASE);
40     }
41 
run(String args[], PrintStream out)42     public static int run(String args[], PrintStream out) {
43         check(0, getclstat007.class, false);
44         check(1, byte.class, false);
45         check(2, char.class, false);
46         check(3, double.class, false);
47         check(4, float.class, false);
48         check(5, int.class, false);
49         check(6, long.class, false);
50         check(7, short.class, false);
51         check(8, void.class, false);
52         check(9, boolean.class, false);
53         check(10, new byte[1].getClass(), true);
54         check(11, new char[1].getClass(), true);
55         check(12, new double[1].getClass(), true);
56         check(13, new float[1].getClass(), true);
57         check(14, new int[1].getClass(), true);
58         check(15, new long[1].getClass(), true);
59         check(16, new short[1].getClass(), true);
60         check(17, new boolean[1].getClass(), true);
61         check(18, new Object[1].getClass(), true);
62         return getRes();
63     }
64 }
65