test/jdk/sun/tools/jstat/compilerOutput1.awk
author iklam
Wed, 13 Nov 2019 19:55:11 -0800
changeset 59072 b987ea528c21
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234133: VM build broken due to memory/archiveUtils.inline.hpp Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# matching the following output specified as a pattern that verifies
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# that the numerical values conform to a specific pattern, rather than
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# specific values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# Compiled Failed Invalid   Time   FailedType FailedMethod
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
#       38      0       0     0.41          0             
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
BEGIN	{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
	    headerlines=0; datalines=0; totallines=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
/^Compiled Failed Invalid   Time   FailedType FailedMethod$/	{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
	    headerlines++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# note - the FailedMethod column is not matched very thoroughly by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
# following pattern. We just check for zero or more spaces after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# FailedType column and the for any sequence of characters for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# FailedMethod column. Better checking would verify an optional string of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# characters that follows class/method name patterns. However, it's very
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
# difficult to generate any data in this column under normal circumstances.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/^[ ]*[0-9]+[ ]*[0-9]+[ ]*[0-9]+[ ]*[0-9]+\.[0-9]+[ ]*[0-9]+[ ]*.*$/	{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
	    datalines++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
	}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
	{ totallines++; print $0 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
END	{
22562
e909d64b8dd8 6545321: [TESTBUG] jstatLineCounts4.sh has to be resilient to unexpected output
sla
parents: 2
diff changeset
    33
	    if ((headerlines == 1) && (datalines == 1)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
	        exit 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
	    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
	    else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
	        exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
	    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
	}