blob: 294937f7d58a0c84027daef8a1e7060701ac82cf [file] [log] [blame]
/*
* Copyright (c) 2000, 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.Accessible.isPrivate;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
/**
* This class is used as debugee application for the isPrivate001 JDI test.
*/
public class isPrivate001a {
static boolean verbose_mode = false;
boolean z0, z1[]={z0}, z2[][]={z1};
byte b0, b1[]={b0}, b2[][]={b1};
char c0, c1[]={c0}, c2[][]={c1};
double d0, d1[]={d0}, d2[][]={d1};
float f0, f1[]={f0}, f2[][]={f1};
int i0, i1[]={i0}, i2[][]={i1};
long l0, l1[]={l0}, l2[][]={l1};
// Classes must be loaded and linked, so all fields must be
// initialized
Boolean Z0 = new Boolean(true), Z1[]={Z0}, Z2[][]={Z1};
Byte B0 = new Byte((byte)1), B1[]={B0}, B2[][]={B1};
Character C0 = new Character('\u00ff'), C1[]={C0}, C2[][]={C1};
Double D0 = new Double(1.0), D1[]={D0}, D2[][]={D1};
Float F0 = new Float(1.0f), F1[]={F0}, F2[][]={F1};
Integer I0 = new Integer(-1), I1[]={I0}, I2[][]={I1};
Long L0 = new Long(-1l), L1[]={L0}, L2[][]={L1};
String S0 = new String("4434819"), S1[]={S0}, S2[][]={S1};
Object O0 = new Object(), O1[]={O0}, O2[][]={O1};
private static class U {}
protected static class V {}
public static class W {}
static class P {} // package private
U u0=new U(), u1[]={u0}, u2[][]={u1};
V v0=new V(), v1[]={v0}, v2[][]={v1};
W w0=new W(), w1[]={w0}, w2[][]={w1};
P p0=new P(), p1[]={p0}, p2[][]={p1};
// Interfaces must be loaded and linked, so classes that implement
// interfaces must be initialized.
private static interface s_interf {}
private static class s_interf_impl implements s_interf {}
s_interf_impl sii0 = new s_interf_impl();
s_interf s_interf_0, s_interf_1[]={s_interf_0}, s_interf_2[][]={s_interf_1};
isPrivate001 a001_0 = new isPrivate001(), a001_1[]={a001_0},
a001_2[][]={a001_1};
// Class isPrivate001a is initialized in method main()
isPrivate001a a0, a1[]={a0}, a2[][]={a1};
pack_priv_cls ppc0=new pack_priv_cls(), ppc1[]={ppc0}, ppc2[][]={ppc1};
pack_priv_interf_impl ppii0 = new pack_priv_interf_impl();
pack_priv_interf ppi0, ppi1[]={ppi0}, ppi2[][]={ppi1};
private static void print_log_on_verbose(String message) {
if ( verbose_mode ) {
System.err.println(message);
}
}
public static void main (String argv[]) {
for (int i=0; i<argv.length; i++) {
if ( argv[i].equals("-vbs") || argv[i].equals("-verbose") ) {
verbose_mode = true;
break;
}
}
print_log_on_verbose("**> isPrivate001a: debugee started!");
isPrivate001a isPrivate001a_obj = new isPrivate001a();
ArgumentHandler argHandler = new ArgumentHandler(argv);
IOPipe pipe = argHandler.createDebugeeIOPipe();
print_log_on_verbose("**> isPrivate001a: waiting for \"quit\" signal...");
pipe.println("ready");
String instruction = pipe.readln();
if (instruction.equals("quit")) {
print_log_on_verbose("**> isPrivate001a: \"quit\" signal recieved!");
print_log_on_verbose("**> isPrivate001a: completed succesfully!");
System.exit(0/*STATUS_PASSED*/ + 95/*STATUS_TEMP*/);
}
System.err.println("!!**> isPrivate001a: unexpected signal (no \"quit\") - " + instruction);
System.err.println("!!**> isPrivate001a: FAILED!");
System.exit(2/*STATUS_FAILED*/ + 95/*STATUS_TEMP*/);
}
}
/** Sample package-private class. */
class pack_priv_cls {}
/** Sample package-private interface. */
interface pack_priv_interf {}
/** Class that implements package-private interface */
class pack_priv_interf_impl implements pack_priv_interf {}