jdk/test/sun/tools/jstat/gcCauseOutput1.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    LGCC                 GCC                 
     6 #  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT     CGC    CGCT     GCT    LGCC                 GCC                 
     7 #  0.00   0.00   0.00   9.97  90.94  87.70      2    0.013     0    0.000    0.013 Allocation Failure   No GC
     7 #  0.00   0.00   0.00   9.97  90.94  87.70      2    0.013     0    0.000     0    0.000    0.013 Allocation Failure   No GC
     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 /^  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT     GCT    LGCC                 GCC                 $/	{
    14 /^  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT    LGCC                 GCC                 $/	{
    15 	    headerlines++;
    15 	    headerlines++;
    16 	}
    16 	}
    17 
    17 
    18 # The following pattern does not verify the validity of the gc cause
    18 # The following pattern does not verify the validity of the gc cause
    19 # string as the values can vary depending on conditions out of our
    19 # string as the values can vary depending on conditions out of our