From da1a1e192306ffd931b76910564bbe93a05900d1 Mon Sep 17 00:00:00 2001 From: "Paul E. McKenney" Date: Thu, 19 Apr 2018 14:46:32 -0700 Subject: 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 Tested-by: Nicholas Piggin --- tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh') diff --git a/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh b/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh index 7742fac44781..98f650c9bf54 100755 --- a/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh +++ b/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh @@ -22,9 +22,10 @@ editor=${EDITOR-vi} files= for i in ${rundir}/*/Make.out do - if grep -q "error:" < $i + if egrep -q "error:|warning:" < $i then - files="$files $i" + egrep "error:|warning:" < $i > $i.diags + files="$files $i.diags $i" fi done if test -n "$files" -- cgit v1.2.3-59-g8ed1b