blob: bc74f002d8c08f52832f50e403b1ab0de1c9548b [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.ReferenceType.equals;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
/**
* This class is used as debugee application for the equals001 JDI test.
*/
public class equals001a {
static boolean verbose_mode = false; // debugger may switch to true
// - for more easy failure evaluation
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};
static class s_class {}
s_class s_class_0 = new s_class(), s_class_1[]={s_class_0},
s_class_2[][]={s_class_1};
// Interfaces must be loaded and linked, so classes that implement
// interfaces must be initialized.
static interface s_interf {}
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};
ClassForCheck class_for_check0 = new ClassForCheck(),
class_for_check1[]={class_for_check0},
class_for_check2[][]={class_for_check1};
InterfaceForCheck_impl interf_for_check_impl0 = new InterfaceForCheck_impl();
InterfaceForCheck interf_for_check0,
interf_for_check1[]={interf_for_check0},
interf_for_check2[][]={interf_for_check1};
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("**> equals001a: debugee started!");
ArgumentHandler argHandler = new ArgumentHandler(argv);
IOPipe pipe = argHandler.createDebugeeIOPipe();
equals001a equals001a_obj = new equals001a();
print_log_on_verbose("**> equals001a: waiting for \"quit\" signal...");
pipe.println("ready");
String instruction = pipe.readln();
if (instruction.equals("quit")) {
print_log_on_verbose("**> equals001a: \"quit\" signal recieved!");
print_log_on_verbose("**> equals001a: completed succesfully!");
System.exit(0/*STATUS_PASSED*/ + 95/*STATUS_TEMP*/);
}
System.err.println("!!**> equals001a: unexpected signal (no \"quit\") - " + instruction);
System.err.println("!!**> equals001a: FAILED!");
System.exit(2/*STATUS_FAILED*/ + 95/*STATUS_TEMP*/);
}
}
class ClassForCheck {
// static fields
static boolean s_boolean_field;
static byte s_byte_field;
static char s_char_field;
static double s_double_field;
static float s_float_field;
static int s_int_field;
static long s_long_field;
static Object s_object_field;
static long[] s_prim_array_field;
static Object[] s_ref_array_field;
// instance fields
boolean i_boolean_field;
byte i_byte_field;
char i_char_field;
double i_double_field;
float i_float_field;
int i_int_field;
long i_long_field;
Object i_object_field;
long[] i_prim_array_field;
Object[] i_ref_array_field;
}
interface InterfaceForCheck {
static final boolean s_interf_boolean_field = true;
static final byte s_interf_byte_field = (byte)1;
static final char s_interf_char_field = '1';
static final double s_interf_double_field = 999;
static final float s_interf_float_field = 99;
static final int s_interf_int_field = 100;
static final long s_interf_long_field = 1000;
static final Object s_interf_object_field = new Object();
}
class InterfaceForCheck_impl implements InterfaceForCheck {}