jdk/test/sun/tools/jps/jps-lm_Output1.awk
changeset 25987 76e62811f63b
parent 25986 12bcf9a5994f
child 25988 c75f62affad8
child 25989 6a57ce3f21f1
child 25991 e48157b42439
--- a/jdk/test/sun/tools/jps/jps-lm_Output1.awk	Thu Aug 14 15:54:04 2014 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-#
-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
-	    }
-	}