< prev index next >

test/runtime/memory/RunUnitTestsConcurrently.java

Print this page




  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  * @summary Test launches unit tests inside vm concurrently
  27  * @library /testlibrary /../../test/lib
  28  * @modules java.base/sun.misc
  29  *          java.management
  30  * @build RunUnitTestsConcurrently
  31  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  32  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  33  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI RunUnitTestsConcurrently 30 15000
  34  */
  35 
  36 import com.oracle.java.testlibrary.*;
  37 import sun.hotspot.WhiteBox;
  38 
  39 public class RunUnitTestsConcurrently {
  40 
  41   private static WhiteBox wb;
  42   private static long timeout;
  43   private static long timeStamp;
  44 
  45   public static class Worker implements Runnable {
  46     @Override
  47     public void run() {
  48       while (System.currentTimeMillis() - timeStamp < timeout) {
  49         WhiteBox.getWhiteBox().runMemoryUnitTests();
  50       }
  51     }
  52   }
  53 
  54   public static void main(String[] args) throws InterruptedException {
  55     if (!Platform.isDebugBuild() || !Platform.is64bit()) {
  56       return;




  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  * @summary Test launches unit tests inside vm concurrently
  27  * @library /testlibrary /../../test/lib
  28  * @modules java.base/sun.misc
  29  *          java.management
  30  * @build RunUnitTestsConcurrently
  31  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  32  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  33  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI RunUnitTestsConcurrently 30 15000
  34  */
  35 
  36 import jdk.test.lib.*;
  37 import sun.hotspot.WhiteBox;
  38 
  39 public class RunUnitTestsConcurrently {
  40 
  41   private static WhiteBox wb;
  42   private static long timeout;
  43   private static long timeStamp;
  44 
  45   public static class Worker implements Runnable {
  46     @Override
  47     public void run() {
  48       while (System.currentTimeMillis() - timeStamp < timeout) {
  49         WhiteBox.getWhiteBox().runMemoryUnitTests();
  50       }
  51     }
  52   }
  53 
  54   public static void main(String[] args) throws InterruptedException {
  55     if (!Platform.isDebugBuild() || !Platform.is64bit()) {
  56       return;


< prev index next >