Test1a.java revision 118
0N/A/*
0N/A * Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any questions.
0N/A */
0N/A
118N/A// These tests exercise the various compile policies available via
118N/A// JavaCompiler.CompilePolicy. Like any golden file tests, they are
118N/A// somewhat fragile and susceptible to breakage, but like the canary
118N/A// in the mine, it is useful to know when something is not as it used
118N/A// to be. The golden files should not be taken as a guarantee of
118N/A// future behavior, and should be updated, with due care, if the
118N/A// behavior of the compile policy is deliberately changed.
118N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188 6290772
0N/A * @summary provide variable policies for javac operation
0N/A * Default compile policy is now "by file" (reverted to "todo" for 6382700)
0N/A * Because of attr errors in B, no code should be generated
0N/A * @compile/fail/ref=bytodo.ABD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy A.java B.java D.java
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188
0N/A * @summary provide variable policies for javac operation
0N/A * Generate code for A, A1, A2, B
0N/A * @compile/fail/ref=bytodo.ABD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy -XDcompilePolicy=bytodo A.java B.java D.java
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188
0N/A * @summary provide variable policies for javac operation
0N/A * Because of attr errors in B, no code should be generated
0N/A * @compile/fail/ref=simple.ABD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy -XDcompilePolicy=simple A.java B.java D.java
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188
0N/A * @summary provide variable policies for javac operation
0N/A * Because of attr errors in B, no code should be generated
0N/A * @compile/fail/ref=byfile.ABD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy -XDcompilePolicy=byfile A.java B.java D.java
0N/A */
0N/A
0N/A
0N/A
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188 6290772
0N/A * @summary provide variable policies for javac operation
0N/A * Default compile policy is now "by file" (reverted to "todo" for 6382700)
0N/A * Generate code for A, A1, A2, but because of flow errors in C, no more code should be generated
0N/A * @compile/fail/ref=bytodo.ACD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy A.java C.java D.java
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188
0N/A * @summary provide variable policies for javac operation
0N/A * Generate code for A, A1, A2, C
0N/A * @compile/fail/ref=bytodo.ACD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy -XDcompilePolicy=bytodo A.java C.java D.java
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188
0N/A * @summary provide variable policies for javac operation
0N/A * Because of flow errors in C, no code should be generated
0N/A * @compile/fail/ref=simple.ACD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy -XDcompilePolicy=simple A.java C.java D.java
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6260188
0N/A * @summary provide variable policies for javac operation
0N/A * Generate code for A, A1, A2, but because of flow errors in C, no more code should be generated
0N/A * @compile/fail/ref=byfile.ACD.out -XDstdout -XDrawDiagnostics -XDverboseCompilePolicy -XDcompilePolicy=byfile A.java C.java D.java
0N/A */