test/compiler/compilercontrol/commands/ExcludeTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff test/compiler/compilercontrol/commands

test/compiler/compilercontrol/commands/ExcludeTest.java

Print this page
rev 10454 : 8150054: Make compilercontrol test ignore xcomp
Summary: Add -Xmixed and use jtreg driver
Reviewed-by:


  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8137167
  27  * @summary Tests CompileCommand=exclude
  28  * @library /testlibrary /test/lib /compiler/testlibrary ../share /
  29  * @build compiler.compilercontrol.commands.ExcludeTest
  30  *        pool.sub.* pool.subpack.* sun.hotspot.WhiteBox
  31  *        compiler.testlibrary.CompilerUtils compiler.compilercontrol.share.actions.*
  32  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  33  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  34  * @run main/othervm compiler.compilercontrol.commands.ExcludeTest
  35  */
  36 
  37 package compiler.compilercontrol.commands;
  38 
  39 import compiler.compilercontrol.share.SingleCommand;
  40 import compiler.compilercontrol.share.scenario.Command;
  41 import compiler.compilercontrol.share.scenario.Scenario;
  42 
  43 public class ExcludeTest {
  44     public static void main(String[] args) {
  45         new SingleCommand(Command.EXCLUDE, Scenario.Type.OPTION).test();
  46     }
  47 }


  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8137167
  27  * @summary Tests CompileCommand=exclude
  28  * @library /testlibrary /test/lib /compiler/testlibrary ../share /
  29  * @build compiler.compilercontrol.commands.ExcludeTest
  30  *        pool.sub.* pool.subpack.* sun.hotspot.WhiteBox
  31  *        compiler.testlibrary.CompilerUtils compiler.compilercontrol.share.actions.*
  32  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  33  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  34  * @run driver compiler.compilercontrol.commands.ExcludeTest
  35  */
  36 
  37 package compiler.compilercontrol.commands;
  38 
  39 import compiler.compilercontrol.share.SingleCommand;
  40 import compiler.compilercontrol.share.scenario.Command;
  41 import compiler.compilercontrol.share.scenario.Scenario;
  42 
  43 public class ExcludeTest {
  44     public static void main(String[] args) {
  45         new SingleCommand(Command.EXCLUDE, Scenario.Type.OPTION).test();
  46     }
  47 }
test/compiler/compilercontrol/commands/ExcludeTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File