2 # SPDX-License-Identifier: GPL-2.0+
4 # Given the results directories for previous KVM-based torture runs,
5 # check the build and console output for errors. Given a directory
6 # containing results directories, this recursively checks them all.
8 # Usage: kvm-recheck.sh resdir ...
10 # Returns status reflecting the success or not of the last run specified.
12 # Copyright (C) IBM Corporation, 2011
14 # Authors: Paul E. McKenney <paulmck@linux.ibm.com>
16 PATH
=`pwd`/tools
/testing
/selftests
/rcutorture
/bin
:$PATH; export PATH
21 dirs=`find $rd -name Make.defconfig.out -print | sort | sed -e 's,/[^/]*$,,' | sort -u`
24 if test -n "$firsttime"
27 resdir
=`echo $i | sed -e 's,/$,,' -e 's,/[^/]*$,,'`
30 TORTURE_SUITE
="`cat $i/../TORTURE_SUITE`"
31 rm -f $i/console.log.
*.diags
32 kvm-recheck-
${TORTURE_SUITE}.sh
$i
33 if test -f "$i/qemu-retval" && test "`cat $i/qemu-retval`" -ne 0 && test "`cat $i/qemu-retval`" -ne 137
35 echo QEMU error
, output
:
37 elif test -f "$i/console.log"
39 if test -f "$i/qemu-retval" && test "`cat $i/qemu-retval`" -eq 137
43 configcheck.sh
$i/.config
$i/ConfigFragment
44 if test -r $i/Make.oldconfig.err
46 cat $i/Make.oldconfig.err
48 parse-build.sh
$i/Make.out
$configfile
49 parse-console.sh
$i/console.log
$configfile
50 if test -r $i/Warnings
55 if test -f "$i/qemu-cmd"
59 elif test -f "$i/buildonly"
61 echo Build-only run
, no boot
/test
62 configcheck.sh
$i/.config
$i/ConfigFragment
63 parse-build.sh
$i/Make.out
$configfile
65 print_bug Build failed
71 EDITOR
=echo kvm-find-errors.sh
"${@: -1}" > /dev
/null
2>&1