< prev index next >

test/java/lang/management/ThreadMXBean/EnableTest.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


  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     4530538
  27  * @summary Basic unit test of
  28  *          ThreadMXBean.setThreadContentionMonitoringEnabled()
  29  *          and ThreadMXBean.setThreadCpuTimeEnabled().
  30  * @author  Mandy Chung
  31  *
  32  * @modules java.management
  33  * @run main EnableTest
  34  */
  35 
  36 import java.lang.management.*;
  37 
  38 public class EnableTest {
  39     private static ThreadMXBean tm = ManagementFactory.getThreadMXBean();
  40 
  41     private static void checkThreadContentionMonitoring(boolean expectedValue)
  42         throws Exception {
  43         boolean value = tm.isThreadContentionMonitoringEnabled();
  44         if (value != expectedValue) {
  45              throw new RuntimeException("TEST FAILED: " +
  46                  "isThreadContentionMonitoringEnabled() returns " + value +
  47                  " but expected to be " + expectedValue);
  48         }
  49 
  50     }
  51 
  52     private static void testThreadContentionMonitoring()




  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     4530538
  27  * @summary Basic unit test of
  28  *          ThreadMXBean.setThreadContentionMonitoringEnabled()
  29  *          and ThreadMXBean.setThreadCpuTimeEnabled().
  30  * @author  Mandy Chung
  31  *

  32  * @run main EnableTest
  33  */
  34 
  35 import java.lang.management.*;
  36 
  37 public class EnableTest {
  38     private static ThreadMXBean tm = ManagementFactory.getThreadMXBean();
  39 
  40     private static void checkThreadContentionMonitoring(boolean expectedValue)
  41         throws Exception {
  42         boolean value = tm.isThreadContentionMonitoringEnabled();
  43         if (value != expectedValue) {
  44              throw new RuntimeException("TEST FAILED: " +
  45                  "isThreadContentionMonitoringEnabled() returns " + value +
  46                  " but expected to be " + expectedValue);
  47         }
  48 
  49     }
  50 
  51     private static void testThreadContentionMonitoring()


< prev index next >