51N/A/*
553N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
51N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
51N/A *
51N/A * This code is free software; you can redistribute it and/or modify it
51N/A * under the terms of the GNU General Public License version 2 only, as
51N/A * published by the Free Software Foundation.
51N/A *
51N/A * This code is distributed in the hope that it will be useful, but WITHOUT
51N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
51N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
51N/A * version 2 for more details (a copy is included in the LICENSE file that
51N/A * accompanied this code).
51N/A *
51N/A * You should have received a copy of the GNU General Public License version
51N/A * 2 along with this work; if not, write to the Free Software Foundation,
51N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
51N/A *
553N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
553N/A * or visit www.oracle.com if you need additional information or have any
553N/A * questions.
51N/A */
51N/A
51N/A/*
51N/A * @test
51N/A * @bug 6715767
51N/A * @summary javap on java.lang.ClassLoader crashes
51N/A */
51N/A
51N/Aimport java.io.*;
51N/A
51N/Apublic class T6715767 {
51N/A public static void main(String... args) throws Exception {
51N/A new T6715767().run();
51N/A }
51N/A
51N/A void run() throws Exception {
51N/A StringWriter sw = new StringWriter();
51N/A PrintWriter pw = new PrintWriter(sw);
51N/A String[] args = { "java.lang.ClassLoader" };
51N/A int rc = com.sun.tools.javap.Main.run(args, pw);
51N/A if (rc != 0 ||
51N/A sw.toString().indexOf("at com.sun.tools.javap.JavapTask.run") != -1) {
51N/A System.err.println("rc: " + rc);
51N/A System.err.println("log:\n" + sw);
51N/A throw new Exception("unexpected result");
51N/A }
51N/A }
51N/A}
51N/A