1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/*
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* 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.
*/
package nsk.jdi.WatchpointEvent.field;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
// This class is the debugged application in the test
class field001a {
static final int PASSED = 0;
static final int FAILED = 2;
static final int JCK_STATUS_BASE = 95;
static final String COMMAND_READY = "ready";
static final String COMMAND_QUIT = "quit";
static final String COMMAND_GO = "go";
static final String COMMAND_DONE = "done";
static final int ACCESS_COUNT = 76;
static final int MODIFICATIONS_COUNT = ACCESS_COUNT;
public static void main(String args[]) {
System.exit(JCK_STATUS_BASE + run(args));
}
static int run( String args[]) {
ArgumentHandler argHandler = new ArgumentHandler(args);
IOPipe pipe = argHandler.createDebugeeIOPipe();
// create instance of checked class
CheckedClass foo = new CheckedClass();
// notify debugger that debuggee started
pipe.println(COMMAND_READY);
// wait for command GO from debugger
String command = pipe.readln();
if (command.equals(COMMAND_QUIT)) {
return PASSED;
}
if (!command.equals(COMMAND_GO)) {
System.err.println("TEST BUG: unknown command: " + command);
return FAILED;
}
// perform actions
foo.run();
// notify debugger that the command done
pipe.println(COMMAND_DONE);
// wait for command QUIT from debugger and exit
command = pipe.readln();
if (!command.equals(COMMAND_QUIT)) {
System.err.println("TEST BUG: unknown command: " + command);
return FAILED;
}
return PASSED;
}
}
// class for checking
class CheckedClass {
boolean z0, z1[], z2[][];
byte b0, b1[], b2[][];
char c0, c1[], c2[][];
double d0, d1[], d2[][];
float f0, f1[], f2[][];
int i0, i1[], i2[][];
long l0, l1[], l2[][];
short s0, s1[], s2[][];
static long lS0, lS1[], lS2[][];
private long lP0, lP1[], lP2[][];
public long lU0, lU1[], lU2[][];
protected long lR0, lR1[], lR2[][];
transient long lT0, lT1[], lT2[][];
volatile long lV0, lV1[], lV2[][];
class Class {}
Class X0, X1[], X2[][];
Boolean Z0, Z1[], Z2[][];
Byte B0, B1[], B2[][];
Character C0, C1[], C2[][];
Double D0, D1[], D2[][];
Float F0, F1[], F2[][];
Integer I0, I1[], I2[][];
Long L0, L1[], L2[][];
String W0, W1[], W2[][];
Short S0, S1[], S2[][];
Object O0, O1[], O2[][];
static Long LS0, LS1[], LS2[][];
private Long LP0, LP1[], LP2[][];
public Long LU0, LU1[], LU2[][];
protected Long LR0, LR1[], LR2[][];
transient Long LT0, LT1[], LT2[][];
volatile Long LV0, LV1[], LV2[][];
interface Inter {}
Inter E0, E1[], E2[][];
static Inter ES0, ES1[], ES2[][];
private Inter EP0, EP1[], EP2[][];
public Inter EU0, EU1[], EU2[][];
protected Inter ER0, ER1[], ER2[][];
transient Inter ET0, ET1[], ET2[][];
volatile Inter EV0, EV1[], EV2[][];
public void run() {
z1 = new boolean[] {z0};
z2 = new boolean[][] {z1};
b1 = new byte[] {b0};
b2 = new byte[][] {b1};
c1 = new char[] {c0};
c2 = new char[][] {c1};
d1 = new double[] {d0};
d2 = new double[][] {d1};
f1 = new float[] {f0};
f2 = new float[][] {f1};
i1 = new int[] {i0};
i2 = new int[][] {i1};
l1 = new long[] {l0};
l2 = new long[][] {l1};
s1 = new short[] {s0};
s2 = new short[][] {s1};
lS1 = new long[] {lS0};
lS2 = new long[][] {lS1};
lP1 = new long[] {lP0};
lP2 = new long[][] {lP1};
lU1 = new long[] {lU0};
lU2 = new long[][] {lU1};
lR1 = new long[] {lR0};
lR2 = new long[][] {lR1};
lT1 = new long[] {lT0};
lT2 = new long[][] {lT1};
lV1 = new long[] {lV0};
lV2 = new long[][] {lV1};
X1 = new Class[] {X0};
X2 = new Class[][] {X1};
Z1 = new Boolean[] {Z0};
Z2 = new Boolean[][] {Z1};
B1 = new Byte[] {B0};
B2 = new Byte[][] {B1};
C1 = new Character[] {C0};
C2 = new Character[][]{C1};
D1 = new Double[] {D0};
D2 = new Double[][] {D1};
F1 = new Float[] {F0};
F2 = new Float[][] {F1};
I1 = new Integer[] {I0};
I2 = new Integer[][] {I1};
L1 = new Long[] {L0};
L2 = new Long[][] {L1};
S1 = new Short[] {S0};
S2 = new Short[][] {S1};
W1 = new String[] {W0};
W2 = new String[][] {W1};
O1 = new Object[] {O0};
O2 = new Object[][] {O1};
LS1 = new Long[] {LS0};
LS2 = new Long[][] {LS1};
LP1 = new Long[] {LP0};
LP2 = new Long[][] {LP1};
LU1 = new Long[] {LU0};
LU2 = new Long[][] {LU1};
LR1 = new Long[] {LR0};
LR2 = new Long[][] {LR1};
LT1 = new Long[] {LT0};
LT2 = new Long[][] {LT1};
LV1 = new Long[] {LV0};
LV2 = new Long[][] {LV1};
E1 = new Inter[] {E0};
E2 = new Inter[][] {E1};
ES1 = new Inter[] {ES0};
ES2 = new Inter[][] {ES1};
EP1 = new Inter[] {EP0};
EP2 = new Inter[][] {EP1};
EU1 = new Inter[] {EU0};
EU2 = new Inter[][] {EU1};
ER1 = new Inter[] {ER0};
ER2 = new Inter[][] {ER1};
ET1 = new Inter[] {ET0};
ET2 = new Inter[][] {ET1};
EV1 = new Inter[] {EV0};
EV2 = new Inter[][] {EV1};
}
}
|