Get rid of multiple false positives for "arch" due to compiler warning;

fix true positive for "runaway_process".
This commit is contained in:
Mark Linimon 2006-08-20 18:38:08 +00:00
parent be0af1a2a3
commit cb217a1914
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171056

View File

@ -86,7 +86,7 @@ elif grep -q ".*\.h: No such file" $1; then
fi
elif grep -q "pnohang: killing make checksum" $1; then
reason="fetch_timeout"; tag="fetch-timeout"
elif grep -q "USER PID PPID PGID JOBC STAT TT TIME COMMAND" $1; then
elif grep -qE "USER PID PPID PGID.*JOBC STAT TT TIME COMMAND" $1; then
reason="runaway_process"; tag="runaway"
elif grep -q "pnohang: killing make package" $1; then
reason="runaway_process"; tag="runaway"
@ -140,8 +140,6 @@ elif grep -q ".s: Assembler messages:" $1; then
reason="arch"; tag="arch"
elif grep -qE "Cannot (determine .* target|find the byte order) for this architecture" $1; then
reason="arch"; tag="arch"
elif grep -q "cast from pointer to integer of different size" $1; then
reason="arch"; tag="arch"
elif grep -qE "^cc1: bad value.*for -mcpu.*switch" $1; then
reason="arch"; tag="arch"
elif grep -qE "^cc1: invalid option " $1; then