torture: Make kvm-find-errors.sh find build warnings

Currently, kvm-find-errors.sh looks only for build errors ("error:"),
so this commit makes it also locate build warnings ("warning:").

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Tested-by: Nicholas Piggin <npiggin@gmail.com>
This commit is contained in:
Paul E. McKenney 2018-04-19 14:46:32 -07:00
parent b4e8afbd21
commit da1a1e1923

View file

@ -22,9 +22,10 @@ editor=${EDITOR-vi}
files= files=
for i in ${rundir}/*/Make.out for i in ${rundir}/*/Make.out
do do
if grep -q "error:" < $i if egrep -q "error:|warning:" < $i
then then
files="$files $i" egrep "error:|warning:" < $i > $i.diags
files="$files $i.diags $i"
fi fi
done done
if test -n "$files" if test -n "$files"