jdk/test/sun/tools/jps/jps_Output1.awk
author sla
Tue, 20 Mar 2012 12:48:48 +0100
changeset 12200 d935c2f4aeae
parent 2 90ce3da70b43
child 14329 01f78346929c
permissions -rw-r--r--
7154114: jstat tests failing on non-english locales 7154113: jcmd, jps and jstat tests failing when there are unknown Java processes on the system Reviewed-by: rbackman, kamg, dsamersoff

#
BEGIN	{
	    totallines=0; matched=0
	}

# match on a main class name
/^[0-9]+ [a-z|A-Z][a-z|A-Z|0-9|\$|\+]*$/	{
	    matched++;
	}

# or match on a path name to a jar file - note, jar files ending with
# ".jar" is only a convention, not a requirement. Theoretically,
# any valid file name could occur here.
/^[0-9]+ .*\.jar$/	{
	    matched++;
}

# or match on the condition that the class name is not available
/^[0-9]+ -- process information unavailable$/	{
	    matched++;
	}

# or match an empty class name
/^[0-9]+ $/	{
	    matched++;
	}

	{ totallines++; print $0 }

END	{
	    if ((totallines > 0) && (matched == totallines)) {
	        exit 0
	    }
	    else {
	        exit 1
	    }
	}