blob: c43f9ae033cf714211d2087a74d82cb9b89996c8 [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.isPrepared;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
/**
* This class is used as debugee application for the isprepared001 JDI test.
*/
public class isprepared001a {
static boolean verbose_mode = false; // debugger may switch to true
// - for more easy failure evaluation
NotPreparedClass not_prepared_class_0, not_prepared_class_1[] = {not_prepared_class_0};
NotPreparedInterface not_prepared_interface_0, not_prepared_interface_1[] = {not_prepared_interface_0};
PreparedClass prepared_class_0 = new PreparedClass();
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("**> isprepared001a: debugee started!");
ArgumentHandler argHandler = new ArgumentHandler(argv);
IOPipe pipe = argHandler.createDebugeeIOPipe();
isprepared001a isprepared001a_obj = new isprepared001a();
print_log_on_verbose("**> isprepared001a: waiting for \"quit\" signal...");
pipe.println("ready");
String instruction = pipe.readln();
if (instruction.equals("quit")) {
print_log_on_verbose("**> isprepared001a: \"quit\" signal recieved!");
print_log_on_verbose("**> isprepared001a: completed succesfully!");
System.exit(0/*STATUS_PASSED*/ + 95/*STATUS_TEMP*/);
}
System.err.println("!!**> isprepared001a: unexpected signal (no \"quit\") - " + instruction);
System.err.println("!!**> isprepared001a: FAILED!");
System.exit(2/*STATUS_FAILED*/ + 95/*STATUS_TEMP*/);
}
}
// not prepared class
class NotPreparedClass {}
// not prepared interface
interface NotPreparedInterface {}
// prepared interface
interface PreparedInterface {
static final int int_var = 1;
}
// prepared class
class PreparedClass implements PreparedInterface {
static int my_int_var = int_var;
}