jdk/test/sun/tools/jstat/lineCounts3.awk
changeset 37328 b51428cf0edf
parent 22562 e909d64b8dd8
child 37329 1cebe5df8ece
equal deleted inserted replaced
37327:38d654673889 37328:b51428cf0edf
     1 #
     1 #
     2 # matching the following output specified as a pattern that verifies
     2 # matching the following output specified as a pattern that verifies
     3 # that the numerical values conform to a specific pattern, rather than
     3 # that the numerical values conform to a specific pattern, rather than
     4 # specific values.
     4 # specific values.
     5 #
     5 #
     6 #  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT     GCT   
     6 #  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT   
     7 #  0.00  93.76  26.48   1.95  77.78  68.02      1    0.006     0    0.000    0.006
     7 #  0.00  93.76  26.48   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
     8 #  0.00  93.76  71.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
     8 #  0.00  93.76  71.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
     9 #  0.00  93.76  73.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
     9 #  0.00  93.76  73.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    10 #  0.00  93.76  73.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    10 #  0.00  93.76  73.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    11 #  0.00  93.76  73.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    11 #  0.00  93.76  73.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    12 #  0.00  93.76  75.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    12 #  0.00  93.76  75.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    13 #  0.00  93.76  75.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    13 #  0.00  93.76  75.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    14 #  0.00  93.76  77.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    14 #  0.00  93.76  77.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    15 #  0.00  93.76  77.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    15 #  0.00  93.76  77.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    16 #  0.00  93.76  77.58   1.95  77.78  68.02      1    0.006     0    0.000    0.006
    16 #  0.00  93.76  77.58   1.95  77.78  68.02      1    0.006     0    0.000     0    0.000    0.006
    17 
    17 
    18 BEGIN	{
    18 BEGIN	{
    19 	    headerlines=0; datalines=0; totallines=0
    19 	    headerlines=0; datalines=0; totallines=0
    20         }
    20         }
    21 
    21 
    22 /^  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT     GCT   $/	{
    22 /^  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT   $/	{
    23 	    headerlines++;
    23 	    headerlines++;
    24 	}
    24 	}
    25 
    25 
    26 /^[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*([0-9]+\.[0-9]+)|-[ ]*[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+$/	{
    26 /^[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*([0-9]+\.[0-9]+)|-[ ]*[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+$/	{
    27 	    datalines++;
    27 	    datalines++;
    28 	}
    28 	}
    29 
    29 
    30 	{ totallines++; print $0 }
    30 	{ totallines++; print $0 }
    31 
    31