jdk/test/sun/tools/jstat/lineCounts2.awk
author jjg
Mon, 25 Nov 2013 17:42:28 -0800
changeset 21894 3535c1819067
parent 20763 95cf1b4945f4
child 22562 e909d64b8dd8
permissions -rw-r--r--
8028318: [doclint] doclint will reject existing user-written doc comments using custom tags that follow the recommended rules Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# matching the following output specified as a pattern that verifies
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# that the numerical values conform to a specific pattern, rather than
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# specific values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
#
20194
0290e87d5b58 8014659: NPG: performance counters for compressed klass space
stefank
parents: 16502
diff changeset
     6
#  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT     GCT   
0290e87d5b58 8014659: NPG: performance counters for compressed klass space
stefank
parents: 16502
diff changeset
     7
#  0.00  93.76  28.40   1.82  77.74  68.02      1    0.005     0    0.000    0.005
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
BEGIN	{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
	    headerlines=0; datalines=0; totallines=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
20194
0290e87d5b58 8014659: NPG: performance counters for compressed klass space
stefank
parents: 16502
diff changeset
    13
/^  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT     GCT   $/	{
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
	    headerlines++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
20763
95cf1b4945f4 8025427: jstat tests fails on 32-bit platforms
sla
parents: 20194
diff changeset
    17
/^[ ]*[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]+$/	{
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
	    datalines++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
	{ totallines++; print $0 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
END	{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
	    if ((headerlines == 1) && (datalines == 1) && (totallines == 2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
	        exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
	    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
	    else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
	        exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
	    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
	}