langtools/test/tools/javap/T6715753.java
author lana
Thu, 21 Jan 2016 09:46:01 -0800
changeset 35340 38f7386ed942
parent 30846 2b3f379840f0
child 36526 3b41f1c69604
permissions -rw-r--r--
Added tag jdk-9+102 for changeset 7e3feb2ba5b3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
860
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 7681
diff changeset
     2
 * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
860
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     4
 *
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     8
 *
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    13
 * accompanied this code).
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    14
 *
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5213
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5213
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5213
diff changeset
    21
 * questions.
860
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    22
 */
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    23
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    24
import java.io.*;
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    25
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    26
/*
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    27
 * @test
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    28
 * @bug 6715753
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    29
 * @summary Use javap to inquire about a specific inner class
30846
2b3f379840f0 8074432: Move jdeps and javap to jdk.jdeps module
mchung
parents: 30730
diff changeset
    30
 * @modules jdk.jdeps
860
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    31
 */
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    32
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    33
public class T6715753 {
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    34
    public static void main(String... args) throws Exception {
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    35
        new T6715753().run();
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    36
    }
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    37
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    38
    void run() throws Exception {
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    39
        StringWriter sw = new StringWriter();
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    40
        PrintWriter pw = new PrintWriter(sw);
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    41
        String[] args = { "-notAnOption" };
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    42
        int rc = com.sun.tools.javap.Main.run(args, pw);
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    43
        String log = sw.toString();
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    44
        if (rc == 0
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    45
            || log.indexOf("-notAnOption") == -1
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    46
            || log.indexOf("javap") == -1) { // locale-independent indication of usage message
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    47
            System.err.println("rc: " + rc + ", log=\n" + log);
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    48
            throw new Exception("test failed");
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    49
        }
c7a22d6d7184 6715753: unknown option error can be a little more helpful
jjg
parents:
diff changeset
    50
    }
5213
6efe8a6d26eb 6933914: fix missing newlines
jjg
parents: 860
diff changeset
    51
}