changeset 25987 | 76e62811f63b |
parent 25986 | 12bcf9a5994f |
child 25988 | c75f62affad8 |
child 25989 | 6a57ce3f21f1 |
child 25991 | e48157b42439 |
--- a/jdk/test/sun/tools/jps/jps-Vvml_Output2.awk Thu Aug 14 15:54:04 2014 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -# 1.1 04/03/08 - -BEGIN { - totallines=0; matched=0 - } - -/^[0-9]+ Sleeper$/ { - matched++; - } - -/^[0-9]+ sun.tools.jps.Jps -Vvml.*-XX:Flags=.*vmflags.* \+DisableExplicitGC$/ { - matched++; - } - - { totallines++; print $0 } - -END { - if ((totallines > 0) && (matched >= 2)) { - exit 0 - } - else { - exit 1 - } - }