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

test/compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java

Print this page
rev 10452 : 8140405: CompilerControl: Compiler.clear_directives doesn't clears the exclude state
Summary: Make directive excludes temporary
Reviewed-by:
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 8140405
  27  * @summary Tests jcmd to be able to clear directives added via options
  28  * @library /testlibrary /test/lib /compiler/testlibrary ../share /
  29  * @build compiler.compilercontrol.jcmd.ClearDirectivesFileStackTest
  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.jcmd.ClearDirectivesFileStackTest
  35  */
  36 
  37 package compiler.compilercontrol.jcmd;
  38 
  39 import compiler.compilercontrol.share.AbstractTestBase;
  40 import compiler.compilercontrol.share.method.MethodDescriptor;
  41 import compiler.compilercontrol.share.scenario.Command;
  42 import compiler.compilercontrol.share.scenario.CommandGenerator;
  43 import compiler.compilercontrol.share.scenario.CompileCommand;
  44 import compiler.compilercontrol.share.scenario.JcmdCommand;
  45 import compiler.compilercontrol.share.scenario.Scenario;
  46 import jdk.test.lib.Utils;
  47 
  48 import java.lang.reflect.Executable;
  49 
  50 public class ClearDirectivesFileStackTest extends AbstractTestBase {
  51     private static final int AMOUNT = Utils.getRandomInstance().nextInt(49);
  52     private final CommandGenerator cmdGen = new CommandGenerator();
  53 
  54     public static void main(String[] args) {




  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 8140405
  27  * @summary Tests jcmd to be able to clear directives added via options
  28  * @library /testlibrary /test/lib /compiler/testlibrary ../share /
  29  * @build compiler.compilercontrol.jcmd.ClearDirectivesFileStackTest
  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.jcmd.ClearDirectivesFileStackTest
  35  */
  36 
  37 package compiler.compilercontrol.jcmd;
  38 
  39 import compiler.compilercontrol.share.AbstractTestBase;
  40 import compiler.compilercontrol.share.method.MethodDescriptor;
  41 import compiler.compilercontrol.share.scenario.Command;
  42 import compiler.compilercontrol.share.scenario.CommandGenerator;
  43 import compiler.compilercontrol.share.scenario.CompileCommand;
  44 import compiler.compilercontrol.share.scenario.JcmdCommand;
  45 import compiler.compilercontrol.share.scenario.Scenario;
  46 import jdk.test.lib.Utils;
  47 
  48 import java.lang.reflect.Executable;
  49 
  50 public class ClearDirectivesFileStackTest extends AbstractTestBase {
  51     private static final int AMOUNT = Utils.getRandomInstance().nextInt(49);
  52     private final CommandGenerator cmdGen = new CommandGenerator();
  53 
  54     public static void main(String[] args) {


test/compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File