< prev index next >

test/serviceability/tmtools/jstat/GcCauseTest01.java

Print this page




  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  * @summary Test checks output displayed with jstat -gccause.
  27  *          Test scenario:
  28  *          test several times provokes garbage collection in the debuggee application and after each garbage
  29  *          collection runs jstat. jstat should show that after garbage collection number of GC events and garbage
  30  *          collection time increase.
  31  * @library /test/lib/share/classes
  32  * @library ../share

  33  * @build common.*
  34  * @build utils.*
  35  *
  36  * @run main/othervm -XX:+UsePerfData GcCauseTest01
  37  */
  38 import utils.*;
  39 
  40 public class GcCauseTest01 {
  41 
  42     public static void main(String[] args) throws Exception {
  43 
  44         // We will be running "jstat -gc" tool
  45         JstatGcCauseTool jstatGcTool = new JstatGcCauseTool(ProcessHandle.current().getPid());
  46 
  47         // Run once and get the  results asserting that they are reasonable
  48         JstatGcCauseResults measurement1 = jstatGcTool.measure();
  49         measurement1.assertConsistency();
  50 
  51         GcProvoker gcProvoker = GcProvoker.createGcProvoker();
  52 


  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  * @summary Test checks output displayed with jstat -gccause.
  27  *          Test scenario:
  28  *          test several times provokes garbage collection in the debuggee application and after each garbage
  29  *          collection runs jstat. jstat should show that after garbage collection number of GC events and garbage
  30  *          collection time increase.
  31  * @library /test/lib/share/classes
  32  * @library ../share
  33  * @ignore 8147848
  34  * @build common.*
  35  * @build utils.*
  36  *
  37  * @run main/othervm -XX:+UsePerfData GcCauseTest01
  38  */
  39 import utils.*;
  40 
  41 public class GcCauseTest01 {
  42 
  43     public static void main(String[] args) throws Exception {
  44 
  45         // We will be running "jstat -gc" tool
  46         JstatGcCauseTool jstatGcTool = new JstatGcCauseTool(ProcessHandle.current().getPid());
  47 
  48         // Run once and get the  results asserting that they are reasonable
  49         JstatGcCauseResults measurement1 = jstatGcTool.measure();
  50         measurement1.assertConsistency();
  51 
  52         GcProvoker gcProvoker = GcProvoker.createGcProvoker();
  53 
< prev index next >