--- old/test/sun/tools/jstatd/JstatGCUtilParser.java 2016-05-05 13:55:20.532732500 +0900 +++ new/test/sun/tools/jstatd/JstatGCUtilParser.java 2016-05-05 13:55:20.438732500 +0900 @@ -29,12 +29,12 @@ /** * The helper class for parsing following output from command 'jstat -gcutil': * - * S0 S1 E O M CCS YGC YGCT FGC FGCT GCT - * 100.00 0.00 64.68 13.17 73.39 33.46 2 0.003 1 0.156 0.158 - * 100.00 0.00 76.54 13.17 73.39 33.46 2 0.003 1 0.156 0.158 - * 100.00 0.00 83.49 13.17 73.39 33.46 2 0.003 1 0.156 0.158 - * 100.00 0.00 84.53 13.17 73.39 33.46 2 0.003 1 0.156 0.158 - * 100.00 0.00 85.57 13.17 73.39 33.46 2 0.003 1 0.156 0.158 + * S0 S1 E O M CCS YGC YGCT FGC FGCT CGC CGCT GCT + * 100.00 0.00 64.68 13.17 73.39 33.46 2 0.003 1 0.156 0 0.00 0.158 + * 100.00 0.00 76.54 13.17 73.39 33.46 2 0.003 1 0.156 0 0.00 0.158 + * 100.00 0.00 83.49 13.17 73.39 33.46 2 0.003 1 0.156 0 0.00 0.158 + * 100.00 0.00 84.53 13.17 73.39 33.46 2 0.003 1 0.156 0 0.00 0.158 + * 100.00 0.00 85.57 13.17 73.39 33.46 2 0.003 1 0.156 0 0.00 0.158 * * It will be verified that numerical values have defined types and are reasonable, * for example percentage should fit within 0-100 interval. @@ -56,6 +56,8 @@ YGCT(GcStatisticsType.DOUBLE), FGC(GcStatisticsType.INTEGER), FGCT(GcStatisticsType.DOUBLE), + CGC(GcStatisticsType.INTEGER), + CGCT(GcStatisticsType.DOUBLE), GCT(GcStatisticsType.DOUBLE); private final GcStatisticsType type;