langtools/test/tools/javap/T8033711.java
author alanb
Thu, 17 Mar 2016 19:04:28 +0000
changeset 36526 3b41f1c69604
parent 30846 2b3f379840f0
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: jjg, jlahoda, vromero, mcimadamore, bpatel, ksrini, darcy, anazarov, dfuchs Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, jan.lahoda@oracle.com, vicente.romero@oracle.com, andreas.lundblad@oracle.com, andrey.x.nazarov@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, kumar.x.srinivasan@oracle.com, sundararajan.athijegannathan@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23107
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     1
/*
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30846
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
23107
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     4
 *
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     8
 *
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    13
 * accompanied this code).
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    14
 *
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    18
 *
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    21
 * questions.
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    22
 */
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    23
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    24
/*
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    25
 * @test
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    26
 * @bug 8033711
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    27
 * @summary An exception is thrown if using the "-classpath" option with no arguments
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30846
diff changeset
    28
 * @modules jdk.jdeps/com.sun.tools.javap
23107
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    29
 */
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    30
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    31
import java.io.*;
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    32
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    33
public class T8033711 {
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    34
    public static void main(String[] args) throws Exception {
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    35
        new T8033711().run();
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    36
    }
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    37
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    38
    public void run() throws Exception {
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    39
        String out = javap("-classpath");
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    40
        if (out.contains("IllegalArgumentException"))
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    41
            throw new Exception("exception found in javap output");
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    42
        if (!out.contains("Error: invalid use of option"))
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    43
            throw new Exception("expected error message not found in javap output");
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    44
    }
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    45
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    46
    String javap(String... args) {
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    47
        StringWriter sw = new StringWriter();
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    48
        PrintWriter out = new PrintWriter(sw);
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    49
        int rc = com.sun.tools.javap.Main.run(args, out);
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    50
        out.close();
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    51
        System.out.println(sw.toString());
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    52
        System.out.println("javap exited, rc=" + rc);
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    53
        return sw.toString();
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    54
    }
d4df5e8d24d2 8033711: An exception is thrown if using the \"-classpath\" option with no arguments
jjg
parents:
diff changeset
    55
}