< prev index next >

test/java/lang/management/MemoryMXBean/MemoryTest.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 MemoryMXBean.getMemoryPools() and
  28  *          MemoryMXBean.getMemoryManager().
  29  * @author  Mandy Chung
  30  *
  31  * @modules jdk.management

  32  * @run main MemoryTest 2
  33  */
  34 
  35 /*
  36  * NOTE: This expected result is hardcoded in this test and this test
  37  *       will be affected if the heap memory layout is changed in
  38  *       the future implementation.
  39  */
  40 
  41 import java.lang.management.*;
  42 import java.util.*;
  43 
  44 public class MemoryTest {
  45     private static boolean testFailed = false;
  46     private static MemoryMXBean mm = ManagementFactory.getMemoryMXBean();
  47     private static final int HEAP = 0;
  48     private static final int NONHEAP = 1;
  49     private static final int NUM_TYPES = 2;
  50 
  51     // WARNING: if the number of pools changes in the future,




  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 MemoryMXBean.getMemoryPools() and
  28  *          MemoryMXBean.getMemoryManager().
  29  * @author  Mandy Chung
  30  *
  31  * @modules jdk.management
  32  *
  33  * @run main MemoryTest 2
  34  */
  35 
  36 /*
  37  * NOTE: This expected result is hardcoded in this test and this test
  38  *       will be affected if the heap memory layout is changed in
  39  *       the future implementation.
  40  */
  41 
  42 import java.lang.management.*;
  43 import java.util.*;
  44 
  45 public class MemoryTest {
  46     private static boolean testFailed = false;
  47     private static MemoryMXBean mm = ManagementFactory.getMemoryMXBean();
  48     private static final int HEAP = 0;
  49     private static final int NONHEAP = 1;
  50     private static final int NUM_TYPES = 2;
  51 
  52     // WARNING: if the number of pools changes in the future,


< prev index next >