author | dcubed |
Fri, 01 Apr 2016 14:29:41 -0700 | |
changeset 37329 | 1cebe5df8ece |
parent 37328 | b51428cf0edf |
permissions | -rw-r--r-- |
2 | 1 |
# |
2 |
# matching the following output specified as a pattern that verifies |
|
3 |
# that the numerical values conform to a specific pattern, rather than |
|
4 |
# specific values. |
|
5 |
# |
|
37329
1cebe5df8ece
8153302: [BACKOUT] STW phases at Concurrent GC should count in PerfCounter
dcubed
parents:
37328
diff
changeset
|
6 |
# NGCMN NGCMX NGC S0CMX S0C S1CMX S1C ECMX EC YGC FGC |
1cebe5df8ece
8153302: [BACKOUT] STW phases at Concurrent GC should count in PerfCounter
dcubed
parents:
37328
diff
changeset
|
7 |
# 2176.0 7232.0 2176.0 192.0 64.0 192.0 64.0 6848.0 2048.0 1 0 |
2 | 8 |
|
9 |
||
10 |
BEGIN { |
|
11 |
headerlines=0; datalines=0; totallines=0 |
|
12 |
} |
|
13 |
||
37329
1cebe5df8ece
8153302: [BACKOUT] STW phases at Concurrent GC should count in PerfCounter
dcubed
parents:
37328
diff
changeset
|
14 |
/^ NGCMN NGCMX NGC S0CMX S0C S1CMX S1C ECMX EC YGC FGC $/ { |
2 | 15 |
headerlines++; |
16 |
} |
|
17 |
||
37329
1cebe5df8ece
8153302: [BACKOUT] STW phases at Concurrent GC should count in PerfCounter
dcubed
parents:
37328
diff
changeset
|
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]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+[ ]*[0-9]+$/ { |
2 | 19 |
datalines++; |
20 |
} |
|
21 |
||
22 |
{ totallines++; print $0 } |
|
23 |
||
24 |
END { |
|
22562
e909d64b8dd8
6545321: [TESTBUG] jstatLineCounts4.sh has to be resilient to unexpected output
sla
parents:
7811
diff
changeset
|
25 |
if ((headerlines == 1) && (datalines == 1)) { |
2 | 26 |
exit 0 |
27 |
} |
|
28 |
else { |
|
29 |
exit 1 |
|
30 |
} |
|
31 |
} |