test/javax/management/monitor/StartStopTest.java

Print this page
rev 9529 : 8034960: Serviceability tests using @library failing with java.lang.NoClassDefFoundError


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 6222826
  27  * @summary Test that tasks are cancelled properly when
  28  *          monitors are started and stopped in a loop.
  29  * @author Luis-Miguel Alventosa
  30  * @library /lib/testlibrary
  31  * @run build jdk.testlibrary.Utils
  32  * @run clean StartStopTest
  33  * @run build StartStopTest
  34  * @run main/othervm/timeout=300 StartStopTest 1
  35  * @run main/othervm/timeout=300 StartStopTest 2
  36  * @run main/othervm/timeout=300 StartStopTest 3
  37  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=5 StartStopTest 1
  38  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=5 StartStopTest 2
  39  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=5 StartStopTest 3
  40  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=-5 StartStopTest 1
  41  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=-5 StartStopTest 2
  42  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=-5 StartStopTest 3
  43  */
  44 
  45 import java.util.concurrent.atomic.AtomicInteger;
  46 import javax.management.MBeanServer;
  47 import javax.management.MBeanServerFactory;
  48 import javax.management.Notification;
  49 import javax.management.NotificationListener;
  50 import javax.management.ObjectName;
  51 import javax.management.monitor.CounterMonitor;




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 6222826
  27  * @summary Test that tasks are cancelled properly when
  28  *          monitors are started and stopped in a loop.
  29  * @author Luis-Miguel Alventosa
  30  * @library /lib/testlibrary
  31  * @build jdk.testlibrary.*
  32  * @run clean StartStopTest
  33  * @run build StartStopTest
  34  * @run main/othervm/timeout=300 StartStopTest 1
  35  * @run main/othervm/timeout=300 StartStopTest 2
  36  * @run main/othervm/timeout=300 StartStopTest 3
  37  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=5 StartStopTest 1
  38  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=5 StartStopTest 2
  39  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=5 StartStopTest 3
  40  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=-5 StartStopTest 1
  41  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=-5 StartStopTest 2
  42  * @run main/othervm/timeout=300 -Djmx.x.monitor.maximum.pool.size=-5 StartStopTest 3
  43  */
  44 
  45 import java.util.concurrent.atomic.AtomicInteger;
  46 import javax.management.MBeanServer;
  47 import javax.management.MBeanServerFactory;
  48 import javax.management.Notification;
  49 import javax.management.NotificationListener;
  50 import javax.management.ObjectName;
  51 import javax.management.monitor.CounterMonitor;