author | jjg |
Mon, 25 Nov 2013 17:42:28 -0800 | |
changeset 21894 | 3535c1819067 |
parent 20194 | 0290e87d5b58 |
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 |
# S0C S1C S0U S1U EC EU OC OU MC MU CCSC CCSU YGC YGCT FGC FGCT GCT |
0290e87d5b58
8014659: NPG: performance counters for compressed klass space
stefank
parents:
16502
diff
changeset
|
7 |
# 512.0 512.0 0.0 496.0 3072.0 615.5 6144.0 280.0 5120.0 4176.0 512.0 401.0 1 0.005 0 0.000 0.005 |
2 | 8 |
|
9 |
||
10 |
BEGIN { |
|
11 |
headerlines=0; datalines=0; totallines=0 |
|
12 |
} |
|
13 |
||
20194
0290e87d5b58
8014659: NPG: performance counters for compressed klass space
stefank
parents:
16502
diff
changeset
|
14 |
/^ S0C S1C S0U S1U EC EU OC OU MC MU CCSC CCSU YGC YGCT FGC FGCT GCT $/ { |
2 | 15 |
headerlines++; |
16 |
} |
|
17 |
||
20194
0290e87d5b58
8014659: NPG: performance counters for compressed klass space
stefank
parents:
16502
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]+[ ]*[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 { |
|
25 |
if ((headerlines == 1) && (datalines == 1) && (totallines == 2)) { |
|
26 |
exit 0 |
|
27 |
} |
|
28 |
else { |
|
29 |
exit 1 |
|
30 |
} |
|
31 |
} |