55N/A/*
553N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
55N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55N/A *
55N/A * This code is free software; you can redistribute it and/or modify it
55N/A * under the terms of the GNU General Public License version 2 only, as
55N/A * published by the Free Software Foundation.
55N/A *
55N/A * This code is distributed in the hope that it will be useful, but WITHOUT
55N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
55N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
55N/A * version 2 for more details (a copy is included in the LICENSE file that
55N/A * accompanied this code).
55N/A *
55N/A * You should have received a copy of the GNU General Public License version
55N/A * 2 along with this work; if not, write to the Free Software Foundation,
55N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
55N/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.
55N/A */
55N/A
55N/Aimport java.io.*;
55N/Aimport java.util.*;
55N/Aimport javax.tools.*;
55N/Aimport com.sun.tools.javac.file.*;
57N/Aimport com.sun.tools.javac.file.JavacFileManager;
55N/Aimport com.sun.tools.javac.util.*;
55N/A
55N/A/*
55N/A * @test
55N/A * @bug 6625520
55N/A * @summary javac handles missing entries on classpath badly
55N/A */
55N/Apublic class T6625520 {
55N/A public static void main(String[] args) throws Exception {
55N/A new T6625520().run();
55N/A }
55N/A
55N/A void run() throws Exception {
55N/A Context c = new Context();
55N/A DiagnosticCollector<JavaFileObject> dc =
55N/A new DiagnosticCollector<JavaFileObject>();
55N/A c.put(DiagnosticListener.class, dc);
55N/A StandardJavaFileManager fm = new JavacFileManager(c, false, null);
55N/A fm.setLocation(StandardLocation.CLASS_PATH,
55N/A Arrays.asList(new File("DOES_NOT_EXIST.jar")));
55N/A FileObject fo = fm.getFileForInput(StandardLocation.CLASS_PATH,
55N/A "p", "C.java");
55N/A System.err.println(fo + "\n" + dc.getDiagnostics());
55N/A if (dc.getDiagnostics().size() > 0)
55N/A throw new Exception("unexpected diagnostics found");
55N/A }
57N/A}