/* * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /* * @test * @key stress * * @summary converted from VM testbase nsk/stress/thread/thread001. * VM testbase keywords: [stress, diehard, slow, nonconcurrent, quick] * VM testbase readme: * DESCRIPTION * Try to start the given number of threads of the priority * lower than the main thread. * * @library /test/lib * @run main/othervm nsk.stress.thread.thread001 500 2m 5s */ package nsk.stress.thread; import java.io.PrintStream; import java.util.Vector; /** * Try to start the given number of threads of the priority * lower than the main thread. */ public class thread001 extends Thread { /** * Enable/disable printing of debugging info. */ private static boolean DEBUG_MODE = false; /** * The minimal number of threads that the tested JVM must support. * This number may be re-assigned by the command-line parameter. */ private static int THREADS_EXPECTED = 1000; /** * Timeout (in milliseconds) after which all threads must halt. */ private static long TIMEOUT = 300000; // 5 minutes /** * Wait few seconds to allow child threads actually start. */ private static long YIELD_TIME = 5000; // 5 seconds /** * Once arg is ``XXXs'', or ``XXXm'', or ``XXXms'', * return the given number of seconds, minutes, or milliseconds * correspondingly. */ private static long parseTime(String arg) { for (int i = arg.lastIndexOf("ms"); i > -1; ) return Long.parseLong(arg.substring(0, i)); for (int i = arg.lastIndexOf("s"); i > -1; ) return Long.parseLong(arg.substring(0, i)) * 1000; for (int i = arg.lastIndexOf("m"); i > -1; ) return Long.parseLong(arg.substring(0, i)) * 60000; throw new IllegalArgumentException( "cannot recognize time scale: " + arg); } /** * Re-invoke to run(args,out) in a JCK style. */ public static void main(String args[]) { int exitCode = run(args, System.out); System.exit(exitCode + 95); } /** * Entry point for the JavaTest harness: args[0] must * prescribe the value for the THREADS_EXPECTED field. */ public static int run(String args[], PrintStream out) { if (args.length > 0) THREADS_EXPECTED = Integer.parseInt(args[0]); if (args.length > 1) TIMEOUT = parseTime(args[1]); if (args.length > 2) YIELD_TIME = parseTime(args[2]); if (args.length > 3) DEBUG_MODE = args[3].toLowerCase().startsWith("-v"); if (args.length > 4) { out.println("#"); out.println("# Too namy command-line arguments!"); out.println("#"); return 2; } if (DEBUG_MODE) { out.println("Start " + THREADS_EXPECTED + " threads of lower priority,"); out.println("wait " + YIELD_TIME + " milliseconds to let them go,"); out.println("and halt after " + TIMEOUT + " milliseconds:"); } Vector threadList = new Vector(); for (int i = 1; i <= THREADS_EXPECTED; i++) try { Thread thread = new thread001(); if (thread.getPriority() == Thread.MIN_PRIORITY) { out.println("#"); out.println("# Sorry! -- The test cannot execute because"); out.println("# it cannot create threads with lower priority"); out.println("# than that executint run(args[],out) method."); out.println("#"); out.println("# However, since no JVM mistakes were found,"); out.println("# the test finishes as PASSED."); out.println("#"); return 0; } thread.setPriority(Thread.MIN_PRIORITY); threadList.addElement(thread); thread.start(); if (DEBUG_MODE) out.println("Threads started: " + i); } catch (OutOfMemoryError oome) { oome.printStackTrace(out); out.println("#"); out.println("# The test have FAILED:"); out.println("# Only " + i + " threads could start,"); out.println("# while at least " + THREADS_EXPECTED + " were expected."); out.println("#"); return 2; } // Actually let them go: try { doSleep(YIELD_TIME); } catch (InterruptedException ie) { ie.printStackTrace(out); out.println("#"); out.println("# OOPS! Could not let threads actually start!"); out.println("#"); return 2; } if (DEBUG_MODE) out.println("The test have PASSED."); return 0; } /** * The thread activity: do nothing special, but do not * free CPU time so that the thread's memory could not * be moved to swap file. */ public void run() { while (!timeout()) continue; } private static long startTime = System.currentTimeMillis(); /** * Check if timeout for this test is exceeded. */ private boolean timeout() { long elapsedTime = System.currentTimeMillis() - startTime; return elapsedTime > TIMEOUT; } /** * Yield to other threads for the given amount of * time (milliseconds). */ private static void doSleep(long time) throws InterruptedException { // // Since Java 2, the method Thread.sleep() doesn't guarantee // to yield to other threads. So, call Object.wait() to yield: // Object lock = new Object(); // local scope, nobody can notify it synchronized (lock) { lock.wait(time); } } }