jdk-24/jdk/test/sun/tools/jstatd/jpsOutput1.awk
Staffan Larsen 330ba0e873 6963102: Testcase failures sun/tools/jstatd/jstatdExternalRegistry.sh and sun/tools/jstatd/jstatdDefaults.sh
Make tests more resilient by allowing for more error messages from jps

Reviewed-by: alanb, rbackman, dsamersoff
2012-09-05 14:42:44 +02:00

28 lines
331 B
Awk

#
BEGIN {
totallines=0; matched=0
}
/^[0-9]+ [a-z|A-Z][a-z|A-Z|0-9|\$|\.]*$/ {
matched++;
}
/^[0-9]+ -- .*$/ {
matched++;
}
/^[0-9]+ $/ {
matched++;
}
{ totallines++; print $0 }
END {
if ((totallines > 0) && (matched == totallines)) {
exit 0
}
else {
exit 1
}
}