1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #!/bin/sh
- #
- # Invoke a text editor on all console.log files for all runs with diagnostics,
- # that is, on all such files having a console.log.diags counterpart.
- # Note that both console.log.diags and console.log are passed to the
- # editor (currently defaulting to "vi"), allowing the user to get an
- # idea of what to search for in the console.log file.
- #
- # Usage: kvm-find-errors.sh directory
- #
- # The "directory" above should end with the date/time directory, for example,
- # "tools/testing/selftests/rcutorture/res/2018.02.25-14:27:27".
- rundir="${1}"
- if test -z "$rundir" -o ! -d "$rundir"
- then
- echo Usage: $0 directory
- fi
- editor=${EDITOR-vi}
- # Find builds with errors
- files=
- for i in ${rundir}/*/Make.out
- do
- if egrep -q "error:|warning:" < $i
- then
- egrep "error:|warning:" < $i > $i.diags
- files="$files $i.diags $i"
- fi
- done
- if test -n "$files"
- then
- $editor $files
- else
- echo No build errors.
- fi
- if grep -q -e "--buildonly" < ${rundir}/log
- then
- echo Build-only run, no console logs to check.
- fi
- # Find console logs with errors
- files=
- for i in ${rundir}/*/console.log
- do
- if test -r $i.diags
- then
- files="$files $i.diags $i"
- fi
- done
- if test -n "$files"
- then
- $editor $files
- else
- echo No errors in console logs.
- fi
|