0N/A/*
2362N/A * Copyright (c) 2001, 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/**
0N/A * @test
0N/A * @bug 4500906 4433599 4740097
0N/A * @summary vmexec= debug java fails for SunCommandLineLauncher
0N/A *
0N/A * @author jjh
0N/A *
0N/A * @run build TestScaffold VMConnection TargetListener TargetAdapter
0N/A * @run compile -g Java_gTest.java
0N/A * @run main Java_gTest
0N/A */
0N/Aimport com.sun.jdi.*;
0N/Aimport com.sun.jdi.event.*;
0N/Aimport com.sun.jdi.request.*;
0N/A
0N/Aimport java.util.*;
0N/Aimport java.io.File;
0N/A
0N/A /********** target program **********/
0N/A
0N/Aclass Java_gTarg {
0N/A public static void main(String[] args){
0N/A System.out.println("Howdy!");
0N/A System.out.println("Goodbye from Java_gTarg!");
0N/A }
0N/A}
0N/A
0N/A /********** test program **********/
0N/A
0N/Apublic class Java_gTest extends TestScaffold {
0N/A ReferenceType targetClass;
0N/A ThreadReference mainThread;
0N/A
0N/A Java_gTest (String args[]) {
0N/A super(args);
0N/A }
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A /*
0N/A * On Windows, this test needs msvcrtd.dll which is installed
0N/A * as part of Vis C++. We don't want this test to fail
0N/A * if msvcrtd.dll is not present
0N/A */
0N/A String mslibName = System.mapLibraryName("msvcrtd");
0N/A if (mslibName.equals("msvcrtd.dll")) {
0N/A try {
0N/A System.loadLibrary("msvcrtd");
0N/A } catch (Throwable ee) {
0N/A // If it isn't there, just pass
0N/A System.out.println("Exception looking for msvcrtd.dll: " + ee);
0N/A System.out.println("msvcrtd.dll does not exist. Let the test pass");
0N/A return;
0N/A }
0N/A }
0N/A
0N/A /*
0N/A * This test would like to run the debug (java) executable.
0N/A * If java is not found, we don't want a spurious test failure,
0N/A * so check before attempting to run.
0N/A *
0N/A * We can't catch the IOException because it is thrown
0N/A * on a separate thread (com.sun.tools.jdi.AbstractLauncher$Helper),
0N/A * so check for the expected executable before attempting to launch.
0N/A */
0N/A
0N/A String specialExec = "java";
0N/A String sep = System.getProperty("file.separator");
0N/A String jhome = System.getProperty("java.home");
0N/A String jbin = jhome + sep + "bin";
0N/A File binDir = new File(jbin);
0N/A if ((new File(binDir, specialExec).exists()) ||
0N/A (new File(binDir, specialExec + ".exe").exists())) {
0N/A /*
0N/A * A java executable does in fact exist in the
0N/A * expected location. Run the real test.
0N/A */
0N/A args = new String[2];
0N/A args[0] = "-connect";
0N/A args[1] = "com.sun.jdi.CommandLineLaunch:vmexec=" + specialExec;
0N/A new Java_gTest(args).startTests();
0N/A } else {
0N/A System.out.println("No java executable exists. Let the test pass.");
0N/A }
0N/A }
0N/A
0N/A /********** event handlers **********/
0N/A
0N/A /********** test core **********/
0N/A
0N/A protected void runTests() throws Exception {
0N/A /*
0N/A * Get to the top of main()
0N/A * to determine targetClass and mainThread
0N/A */
0N/A BreakpointEvent bpe = startToMain("Java_gTarg");
0N/A listenUntilVMDisconnect();
0N/A
0N/A /*
0N/A * deal with results of test
0N/A * if anything has called failure("foo") testFailed will be true
0N/A */
0N/A if (!testFailed) {
0N/A println("Java_gTest: passed");
0N/A } else {
0N/A throw new Exception("Java_gTest: failed");
0N/A }
0N/A }
0N/A}