0041a04fb2
7154113: jcmd, jps and jstat tests failing when there are unknown Java processes on the system Reviewed-by: rbackman, kamg, dsamersoff
28 lines
360 B
Awk
28 lines
360 B
Awk
#
|
|
BEGIN {
|
|
totallines=0; matched=0
|
|
}
|
|
|
|
/^[0-9]+ [a-z|A-Z][a-z|A-Z|0-9|\$|\.]*$/ {
|
|
matched++;
|
|
}
|
|
|
|
/^[0-9]+ -- process information unavailable$/ {
|
|
matched++;
|
|
}
|
|
|
|
/^[0-9]+ $/ {
|
|
matched++;
|
|
}
|
|
|
|
{ totallines++; print $0 }
|
|
|
|
END {
|
|
if ((totallines > 0) && (matched == totallines)) {
|
|
exit 0
|
|
}
|
|
else {
|
|
exit 1
|
|
}
|
|
}
|