< prev index next >

test/jdk/sun/tools/jmap/BasicJMapTest.java

Print this page
rev 51789 : [mq]: asserts


   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 import static jdk.testlibrary.Asserts.assertTrue;
  25 import static jdk.testlibrary.Asserts.fail;
  26 
  27 import java.io.File;
  28 import java.util.Arrays;
  29 
  30 import jdk.test.lib.JDKToolLauncher;
  31 import jdk.test.lib.hprof.HprofParser;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 import jdk.test.lib.process.ProcessTools;
  34 
  35 /*
  36  * @test
  37  * @summary Unit test for jmap utility
  38  * @key intermittent
  39  * @library /lib/testlibrary
  40  * @library /test/lib
  41  * @build jdk.testlibrary.*
  42  * @build jdk.test.lib.hprof.*
  43  * @build jdk.test.lib.hprof.model.*
  44  * @build jdk.test.lib.hprof.parser.*
  45  * @build jdk.test.lib.hprof.util.*
  46  * @run main/timeout=240 BasicJMapTest
  47  */
  48 public class BasicJMapTest {
  49 
  50     private static ProcessBuilder processBuilder = new ProcessBuilder();
  51 
  52     public static void main(String[] args) throws Exception {
  53         testHisto();
  54         testHistoLive();
  55         testFinalizerInfo();
  56         testClstats();
  57         testDump();
  58         testDumpLive();
  59     }
  60 
  61     private static void testHisto() throws Exception {




   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 import static jdk.test.lib.Asserts.assertTrue;
  25 import static jdk.test.lib.Asserts.fail;
  26 
  27 import java.io.File;
  28 import java.util.Arrays;
  29 
  30 import jdk.test.lib.JDKToolLauncher;
  31 import jdk.test.lib.hprof.HprofParser;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 import jdk.test.lib.process.ProcessTools;
  34 
  35 /*
  36  * @test
  37  * @summary Unit test for jmap utility
  38  * @key intermittent

  39  * @library /test/lib

  40  * @build jdk.test.lib.hprof.*
  41  * @build jdk.test.lib.hprof.model.*
  42  * @build jdk.test.lib.hprof.parser.*
  43  * @build jdk.test.lib.hprof.util.*
  44  * @run main/timeout=240 BasicJMapTest
  45  */
  46 public class BasicJMapTest {
  47 
  48     private static ProcessBuilder processBuilder = new ProcessBuilder();
  49 
  50     public static void main(String[] args) throws Exception {
  51         testHisto();
  52         testHistoLive();
  53         testFinalizerInfo();
  54         testClstats();
  55         testDump();
  56         testDumpLive();
  57     }
  58 
  59     private static void testHisto() throws Exception {


< prev index next >