jdk/test/sun/tools/jstat/gcOldOutput1.awk
changeset 16502 4ee53f7dc660
parent 2 90ce3da70b43
child 20194 0290e87d5b58
equal deleted inserted replaced
16501:678abe06c15c 16502:4ee53f7dc660
     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 #   PC       PU        OC          OU       YGC    FGC    FGCT     GCT   
     6 #   MC       MU        OC          OU       YGC    FGC    FGCT     GCT   
     7 #  8192.0   1877.3      6016.0       180.8      1     0    0.000    0.030
     7 #  8192.0   1877.3      6016.0       180.8      1     0    0.000    0.030
     8 
     8 
     9 
     9 
    10 BEGIN	{
    10 BEGIN	{
    11 	    headerlines=0; datalines=0; totallines=0
    11 	    headerlines=0; datalines=0; totallines=0
    12 	}
    12 	}
    13 
    13 
    14 /^   PC       PU        OC          OU       YGC    FGC    FGCT     GCT   $/	{
    14 /^   MC       MU        OC          OU       YGC    FGC    FGCT     GCT   $/	{
    15 	    headerlines++;
    15 	    headerlines++;
    16 	}
    16 	}
    17 
    17 
    18 /^[ ]*[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]+$/	{
    18 /^[ ]*[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]+$/	{
    19 	    datalines++;
    19 	    datalines++;