jdk/test/sun/tools/jstat/lineCounts1.awk
author ysuenaga
Wed, 30 Mar 2016 21:05:35 +0900
changeset 37328 b51428cf0edf
parent 22562 e909d64b8dd8
child 37329 1cebe5df8ece
permissions -rw-r--r--
8151674: STW phases at Concurrent GC should count in PerfCounter Reviewed-by: jmasa, sla, tschatzl
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
#
37328
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
     6
#  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT   
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
     7
#  0.00  93.76  28.80   1.82  77.74  68.02      1    0.005     0    0.000     0    0.000    0.005
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
     8
#  0.00  93.76  73.04   1.82  77.74  68.02      1    0.005     0    0.000     0    0.000    0.005
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
     9
#  0.00  93.76  73.04   1.82  77.74  68.02      1    0.005     0    0.000     0    0.000    0.005
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
    10
#  0.00  93.76  73.04   1.82  77.74  68.02      1    0.005     0    0.000     0    0.000    0.005
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
    11
#  0.00  93.76  75.00   1.82  77.74  68.02      1    0.005     0    0.000     0    0.000    0.005
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
BEGIN	{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
	    headerlines=0; datalines=0; totallines=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
37328
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
    17
/^  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT   $/	{
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
	    headerlines++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
37328
b51428cf0edf 8151674: STW phases at Concurrent GC should count in PerfCounter
ysuenaga
parents: 22562
diff changeset
    21
/^[ ]*[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]+$/	{
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
	    datalines++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
	{ totallines++; print $0 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
END	{
22562
e909d64b8dd8 6545321: [TESTBUG] jstatLineCounts4.sh has to be resilient to unexpected output
sla
parents: 20763
diff changeset
    28
	    if ((headerlines == 1) && (datalines == 5)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
	        exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
            else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
	        exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
	}