3 # Run a kvm-based test of the specified tree on the specified configs.
4 # Fully automated run and error checking, no graphics console.
6 # Execute this in the source tree. Do not run it as a background task
7 # because qemu does not seem to like that much.
9 # Usage: sh kvm-test-1-rcu.sh config builddir resdir minutes qemu-args bootargs
11 # qemu-args defaults to "" -- you will want "-nographic" if running headless.
12 # bootargs defaults to "root=/dev/sda noapic selinux=0 console=ttyS0"
13 # "initcall_debug debug rcutorture.stat_interval=15"
14 # "rcutorture.shutdown_secs=$((minutes * 60))"
15 # "rcutorture.rcutorture_runnable=1"
17 # Anything you specify for either qemu-args or bootargs is appended to
18 # the default values. The "-smp" value is deduced from the contents of
19 # the config fragment.
21 # More sophisticated argument parsing is clearly needed.
23 # This program is free software; you can redistribute it and/or modify
24 # it under the terms of the GNU General Public License as published by
25 # the Free Software Foundation; either version 2 of the License, or
26 # (at your option) any later version.
28 # This program is distributed in the hope that it will be useful,
29 # but WITHOUT ANY WARRANTY; without even the implied warranty of
30 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 # GNU General Public License for more details.
33 # You should have received a copy of the GNU General Public License
34 # along with this program; if not, you can access it online at
35 # http://www.gnu.org/licenses/gpl-2.0.html.
37 # Copyright (C) IBM Corporation, 2011
39 # Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
43 T
=/tmp
/kvm-test-1-rcu.sh.$$
46 .
$KVM/bin
/functions.sh
47 .
$KVPATH/ver_functions.sh
50 title
=`echo $config_template | sed -e 's/^.*\///'`
52 if test -z "$builddir" -o ! -d "$builddir" -o ! -w "$builddir"
54 echo "kvm-test-1-rcu.sh :$builddir: Not a writable directory, cannot build into it"
58 if test -z "$resdir" -o ! -d "$resdir" -o ! -w "$resdir"
60 echo "kvm-test-1-rcu.sh :$resdir: Not a writable directory, cannot build into it"
63 cp $config_template $resdir/ConfigFragment
64 echo ' ---' `date`: Starting build
65 echo ' ---' Kconfig fragment
at: $config_template >> $resdir/log
66 cat << '___EOF___' >> $T
67 CONFIG_RCU_TORTURE_TEST
=y
69 # Optimizations below this point
74 # CONFIG_INPUT_JOYSTICK=n
75 # CONFIG_INPUT_TABLET=n
76 # CONFIG_INPUT_TOUCHSCREEN=n
78 # CONFIG_INPUT_MOUSE=n
79 # # CONFIG_NET=n # disables console access, so accept the slower build.
93 if kvm-build.sh
$config_template $builddir $T
95 cp $builddir/Make
*.out
$resdir
96 cp $builddir/.config
$resdir
97 cp $builddir/arch
/x86
/boot
/bzImage
$resdir
98 parse-build.sh
$resdir/Make.out
$title
100 cp $builddir/Make
*.out
$resdir
101 echo Build failed
, not running KVM
, see
$resdir.
105 seconds
=$
(($minutes * 60))
110 kstarttime
=`awk 'BEGIN { print systime() }' < /dev/null`
111 echo ' ---' `date`: Starting kernel
113 # Determine the appropriate flavor of qemu command.
114 QEMU
="`identify_qemu $builddir/vmlinux.o`"
116 # Generate -smp qemu argument.
117 cpu_count
=`configNR_CPUS.sh $config_template`
118 vcpus
=`identify_qemu_vcpus`
119 if test $cpu_count -gt $vcpus
121 echo CPU count limited from
$cpu_count to
$vcpus
122 touch $resdir/Warnings
123 echo CPU count limited from
$cpu_count to
$vcpus >> $resdir/Warnings
126 qemu_args
="`specify_qemu_cpus "$QEMU" "$qemu_args" "$cpu_count"`"
128 # Generate architecture-specific and interaction-specific qemu arguments
129 qemu_args
="$qemu_args `identify_qemu_args "$QEMU" "$builddir/console.log
"`"
131 # Generate qemu -append arguments
132 qemu_append
="`identify_qemu_append "$QEMU"`"
134 # Pull in Kconfig-fragment boot parameters
135 boot_args
="`configfrag_boot_params "$boot_args" "$config_template"`"
136 # Generate CPU-hotplug boot parameters
137 boot_args
="`rcutorture_param_onoff "$boot_args" $builddir/.config`"
138 # Generate rcu_barrier() boot parameter
139 boot_args
="`rcutorture_param_n_barrier_cbs "$boot_args"`"
140 # Pull in standard rcutorture boot arguments
141 boot_args
="$boot_args rcutorture.stat_interval=15 rcutorture.shutdown_secs=$seconds rcutorture.rcutorture_runnable=1"
143 echo $QEMU $qemu_args -m 512 -kernel $builddir/arch
/x86
/boot
/bzImage
-append \"$qemu_append $boot_args\" > $resdir/qemu-cmd
144 if test -n "$RCU_BUILDONLY"
146 echo Build-only run specified
, boot
/test omitted.
149 $QEMU $qemu_args -m 512 -kernel $builddir/arch
/x86
/boot
/bzImage
-append "$qemu_append $boot_args" &
152 echo Monitoring qemu job
at pid
$qemu_pid
153 for ((i
=0;i
<$seconds;i
++))
155 if kill -0 $qemu_pid > /dev
/null
2>&1
160 kruntime
=`awk 'BEGIN { print systime() - '"$kstarttime"' }' < /dev/null`
161 if test $kruntime -lt $seconds
163 echo Completed
in $kruntime vs.
$seconds >> $resdir/Warnings
2>&1
165 echo ' ---' `date`: Kernel
done
170 if test $commandcompleted -eq 0
172 echo Grace period
for qemu job
at pid
$qemu_pid
173 for ((i
=0;i
<=$grace;i
++))
175 if kill -0 $qemu_pid > /dev
/null
2>&1
181 if test $i -eq $grace
183 kruntime
=`awk 'BEGIN { print systime() - '"$kstarttime"' }'`
184 echo "!!! Hang at $kruntime vs. $seconds seconds" >> $resdir/Warnings
2>&1
190 cp $builddir/console.log
$resdir
191 parse-rcutorture.sh
$resdir/console.log
$title
192 parse-console.sh
$resdir/console.log
$title