< prev index next >

test/jdk/java/lang/management/MemoryMXBean/MemoryTest.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     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 3
  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;




   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     4530538
  27  * @summary Basic unit test of MemoryMXBean.getMemoryPools() and
  28  *          MemoryMXBean.getMemoryManager().
  29  * @requires vm.gc != "Z"
  30  * @author  Mandy Chung
  31  *
  32  * @modules jdk.management
  33  * @run main MemoryTest 2 3
  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;


< prev index next >