test/jdk/java/lang/management/ManagementFactory/DefaultManagementProviderTest.java
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File open Sdiff test/jdk/java/lang/management/ManagementFactory

test/jdk/java/lang/management/ManagementFactory/DefaultManagementProviderTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 8151099
  27  * @summary Verify platform MXBeans initialized properly with java.management
  28  *          module only. No other management provider

  29  * @modules java.management
  30  * @run main/othervm --limit-modules=java.management DefaultManagementProviderTest
  31  */
  32 import java.lang.management.ManagementFactory;
  33 
  34 public class DefaultManagementProviderTest {
  35     public static void main(String[] argv) {
  36         ManagementFactory.getPlatformMBeanServer();
  37         System.out.println("Test case passed");
  38     }
  39 }


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 8151099
  27  * @summary Verify platform MXBeans initialized properly with java.management
  28  *          module only. No other management provider
  29  * @requires !vm.graal.enabled
  30  * @modules java.management
  31  * @run main/othervm --limit-modules=java.management DefaultManagementProviderTest
  32  */
  33 import java.lang.management.ManagementFactory;
  34 
  35 public class DefaultManagementProviderTest {
  36     public static void main(String[] argv) {
  37         ManagementFactory.getPlatformMBeanServer();
  38         System.out.println("Test case passed");
  39     }
  40 }
test/jdk/java/lang/management/ManagementFactory/DefaultManagementProviderTest.java
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File