< prev index next >

test/compiler/compilercontrol/jcmd/StressAddSequentiallyTest.java

Print this page
rev 10239 : imported patch StressAdd

*** 30,55 **** * pool.sub.* pool.subpack.* sun.hotspot.WhiteBox * compiler.testlibrary.CompilerUtils * compiler.compilercontrol.share.actions.* * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission ! * @run main/othervm/timeout=300 compiler.compilercontrol.jcmd.StressAddSequentiallyTest */ package compiler.compilercontrol.jcmd; import jdk.test.lib.dcmd.PidJcmdExecutor; - import java.util.List; - public class StressAddSequentiallyTest extends StressAddJcmdBase { public static void main(String[] args) { new StressAddSequentiallyTest().test(); } @Override ! protected boolean makeConnection(int pid, List<String> commands) { ! commands.forEach(command -> new PidJcmdExecutor(String.valueOf(pid)) ! .execute(command)); return true; } } --- 30,52 ---- * pool.sub.* pool.subpack.* sun.hotspot.WhiteBox * compiler.testlibrary.CompilerUtils * compiler.compilercontrol.share.actions.* * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission ! * @run main/othervm/timeout=300 -Xmixed compiler.compilercontrol.jcmd.StressAddSequentiallyTest */ package compiler.compilercontrol.jcmd; import jdk.test.lib.dcmd.PidJcmdExecutor; public class StressAddSequentiallyTest extends StressAddJcmdBase { public static void main(String[] args) { new StressAddSequentiallyTest().test(); } @Override ! protected boolean makeConnection(int pid) { ! new PidJcmdExecutor(String.valueOf(pid)).execute(nextCommand()); return true; } }
< prev index next >