author | jjg |
Mon, 25 Nov 2013 17:42:28 -0800 | |
changeset 21894 | 3535c1819067 |
parent 20763 | 95cf1b4945f4 |
child 22562 | e909d64b8dd8 |
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 |
# |
|
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 | 8 |
|
9 |
BEGIN { |
|
10 |
headerlines=0; datalines=0; totallines=0 |
|
11 |
} |
|
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 | 14 |
headerlines++; |
15 |
} |
|
16 |
||
20763 | 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 | 18 |
datalines++; |
19 |
} |
|
20 |
||
21 |
{ totallines++; print $0 } |
|
22 |
||
23 |
END { |
|
24 |
if ((headerlines == 1) && (datalines == 1) && (totallines == 2)) { |
|
25 |
exit 0 |
|
26 |
} |
|
27 |
else { |
|
28 |
exit 1 |
|
29 |
} |
|
30 |
} |