jdk/test/sun/tools/jps/jps-lm_Output1.awk
author ohair
Mon, 04 Jan 2010 15:56:42 -0800
changeset 4663 dfea6ffdb0dc
parent 2 90ce3da70b43
permissions -rw-r--r--
6911104: Tests do not work with CYGWIN: tools, sun/tools, and com/sun/tools Reviewed-by: tbell, alanb

#
BEGIN	{
	    totallines=0; matched=0
	}

/^[0-9]+ sun.tools.jps.Jps -lm$/	{
	    matched++;
	}

	{ totallines++; print $0 }

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