jdk/test/com/sun/jdi/NoLaunchOptionTest.java
author hseigel
Sat, 09 May 2015 07:35:16 -0400
changeset 30674 24f77e5a7938
parent 30672 304ed79789c7
parent 30376 2ccf2cf7ea48
child 30675 94206e28ec64
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30376
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 24973
diff changeset
     2
 * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4514
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4514
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4514
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
30672
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    24
import static jdk.testlibrary.Asserts.assertFalse;
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    25
import jdk.testlibrary.OutputAnalyzer;
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    26
import jdk.testlibrary.ProcessTools;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *   @test       NoLaunchOptionTest.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *   @bug        4554734 4724714
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *   @summary    Test for -Xrunjdwp:[onthrow,onuncaught] suboptions require launch suboption
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 *   @author     Tim Bell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
30376
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 24973
diff changeset
    34
 *  @modules jdk.jdi
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *  @run compile -g NoLaunchOptionTest.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *  @build VMConnection
24973
8c4bc3fa4c4e 6622468: TEST_BUG: Time to retire the @debuggeeVMOptions mechanism used in the com.sun.jdi infrastructure
sla
parents: 23010
diff changeset
    37
 *  @run driver NoLaunchOptionTest
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
public class NoLaunchOptionTest extends Object {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    public static void main(String[] args) throws Exception {
30672
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    42
        String[] cmd = VMConnection.insertDebuggeeVMOptions(new String[] {
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    43
                "-agentlib:jdwp=transport=dt_socket,address=5555," +
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    44
                "onthrow=java.lang.ClassNotFoundException,suspend=n",
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    45
                "NotAClass" });
4514
7758bdd54629 6906210: Fix another minor typo in test/Makefile
ohair
parents: 2
diff changeset
    46
30672
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    47
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(cmd);
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    48
        OutputAnalyzer output = ProcessTools.executeProcess(pb);
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    49
        System.out.println(output.getOutput());
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    50
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    51
        assertFalse(output.getExitValue() == 0, "Exit code should not be 0");
304ed79789c7 6755586: Test com/sun/jdi/NoLaunchOptionTest.java may erroneously fail
ykantser
parents: 24973
diff changeset
    52
        output.shouldContain("ERROR: JDWP Specify launch=<command line> when using onthrow or onuncaught suboption");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
}