jdk-24/jdk/test/sun/tools/jstat/lineCounts4.awk

45 lines
1.8 KiB
Awk
Raw Normal View History

2007-12-01 00:00:00 +00:00
#
# matching the following output specified as a pattern that verifies
# that the numerical values conform to a specific pattern, rather than
# specific values.
#
# S0 S1 E O M CCS YGC YGCT FGC FGCT GCT
# 0.00 96.88 66.55 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 71.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 73.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 73.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 73.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 75.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 75.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 77.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 77.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# 0.00 96.88 77.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
# S0 S1 E O M CCS YGC YGCT FGC FGCT GCT
# 0.00 96.88 79.58 2.34 77.78 68.02 1 0.003 0 0.000 0.003
2007-12-01 00:00:00 +00:00
BEGIN {
headerlines=0; datalines=0; totallines=0
datalines2=0;
}
/^ S0 S1 E O M CCS YGC YGCT FGC FGCT GCT $/ {
2007-12-01 00:00:00 +00:00
headerlines++;
}
/^[ ]*[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]+$/ {
2007-12-01 00:00:00 +00:00
if (headerlines == 2) {
datalines2++;
}
datalines++;
}
{ totallines++; print $0 }
END {
if ((headerlines == 2) && (datalines == 11) && (datalines2 == 1)) {
2007-12-01 00:00:00 +00:00
exit 0
} else {
exit 1
}
}