rcutorture: Move common boot flags to kvm-test-1-rcu.sh
[deliverable/linux.git] / tools / testing / selftests / rcutorture / bin / kvm-test-1-rcu.sh
CommitLineData
c87b9c60
PM
1#!/bin/bash
2#
3# Run a kvm-based test of the specified tree on the specified configs.
4# Fully automated run and error checking, no graphics console.
5#
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.
8#
4a261dbc 9# Usage: sh kvm-test-1-rcu.sh config builddir resdir minutes qemu-args boot_args
c87b9c60
PM
10#
11# qemu-args defaults to "" -- you will want "-nographic" if running headless.
4a261dbc 12# boot_args defaults to "root=/dev/sda noapic selinux=0 console=ttyS0"
c87b9c60
PM
13# "initcall_debug debug rcutorture.stat_interval=15"
14# "rcutorture.shutdown_secs=$((minutes * 60))"
15# "rcutorture.rcutorture_runnable=1"
16#
4a261dbc 17# Anything you specify for either qemu-args or boot_args is appended to
c87b9c60
PM
18# the default values. The "-smp" value is deduced from the contents of
19# the config fragment.
20#
21# More sophisticated argument parsing is clearly needed.
22#
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.
27#
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.
32#
33# You should have received a copy of the GNU General Public License
0e342a87
PM
34# along with this program; if not, you can access it online at
35# http://www.gnu.org/licenses/gpl-2.0.html.
c87b9c60
PM
36#
37# Copyright (C) IBM Corporation, 2011
38#
39# Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
40
41grace=120
42
43T=/tmp/kvm-test-1-rcu.sh.$$
44trap 'rm -rf $T' 0
45
46. $KVM/bin/functions.sh
4275be83 47. $KVPATH/ver_functions.sh
c87b9c60
PM
48
49config_template=${1}
50title=`echo $config_template | sed -e 's/^.*\///'`
51builddir=${2}
52if test -z "$builddir" -o ! -d "$builddir" -o ! -w "$builddir"
53then
54 echo "kvm-test-1-rcu.sh :$builddir: Not a writable directory, cannot build into it"
55 exit 1
56fi
57resdir=${3}
58if test -z "$resdir" -o ! -d "$resdir" -o ! -w "$resdir"
59then
60 echo "kvm-test-1-rcu.sh :$resdir: Not a writable directory, cannot build into it"
61 exit 1
62fi
63cp $config_template $resdir/ConfigFragment
64echo ' ---' `date`: Starting build
330a76f1 65echo ' ---' Kconfig fragment at: $config_template >> $resdir/log
c87b9c60
PM
66cat << '___EOF___' >> $T
67CONFIG_RCU_TORTURE_TEST=y
68___EOF___
69# Optimizations below this point
70# CONFIG_USB=n
71# CONFIG_SECURITY=n
72# CONFIG_NFS_FS=n
73# CONFIG_SOUND=n
74# CONFIG_INPUT_JOYSTICK=n
75# CONFIG_INPUT_TABLET=n
76# CONFIG_INPUT_TOUCHSCREEN=n
77# CONFIG_INPUT_MISC=n
78# CONFIG_INPUT_MOUSE=n
79# # CONFIG_NET=n # disables console access, so accept the slower build.
80# CONFIG_SCSI=n
81# CONFIG_ATA=n
82# CONFIG_FAT_FS=n
83# CONFIG_MSDOS_FS=n
84# CONFIG_VFAT_FS=n
85# CONFIG_ISO9660_FS=n
86# CONFIG_QUOTA=n
87# CONFIG_HID=n
88# CONFIG_CRYPTO=n
89# CONFIG_PCCARD=n
90# CONFIG_PCMCIA=n
91# CONFIG_CARDBUS=n
92# CONFIG_YENTA=n
93if kvm-build.sh $config_template $builddir $T
94then
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
99else
100 cp $builddir/Make*.out $resdir
101 echo Build failed, not running KVM, see $resdir.
102 exit 1
103fi
104minutes=$4
105seconds=$(($minutes * 60))
106qemu_args=$5
107boot_args=$6
108
109cd $KVM
110kstarttime=`awk 'BEGIN { print systime() }' < /dev/null`
111echo ' ---' `date`: Starting kernel
4f8a0312
PM
112
113# Determine the appropriate flavor of qemu command.
114QEMU="`identify_qemu $builddir/vmlinux.o`"
c87b9c60
PM
115
116# Generate -smp qemu argument.
117cpu_count=`configNR_CPUS.sh $config_template`
315c540d
PM
118vcpus=`identify_qemu_vcpus`
119if test $cpu_count -gt $vcpus
c87b9c60 120then
315c540d 121 echo CPU count limited from $cpu_count to $vcpus
c87b9c60 122 touch $resdir/Warnings
315c540d
PM
123 echo CPU count limited from $cpu_count to $vcpus >> $resdir/Warnings
124 cpu_count=$vcpus
c87b9c60 125fi
315c540d
PM
126qemu_args="`specify_qemu_cpus "$QEMU" "$qemu_args" "$cpu_count"`"
127
128# Generate architecture-specific and interaction-specific qemu arguments
129qemu_args="$qemu_args `identify_qemu_args "$QEMU" "$builddir/console.log"`"
130
131# Generate qemu -append arguments
132qemu_append="`identify_qemu_append "$QEMU"`"
c87b9c60 133
be70a73a
PM
134# Pull in Kconfig-fragment boot parameters
135boot_args="`configfrag_boot_params "$boot_args" "$config_template"`"
c87b9c60 136# Generate CPU-hotplug boot parameters
4275be83
PM
137boot_args="`rcutorture_param_onoff "$boot_args" $builddir/.config`"
138# Generate rcu_barrier() boot parameter
139boot_args="`rcutorture_param_n_barrier_cbs "$boot_args"`"
be70a73a 140# Pull in standard rcutorture boot arguments
4a261dbc 141boot_args="$boot_args rcutorture.stat_interval=15 rcutorture.shutdown_secs=$seconds rcutorture.rcutorture_runnable=1 rcutorture.test_no_idle_hz=1 rcutorture.verbose=1"
c87b9c60 142
be70a73a 143echo $QEMU $qemu_args -m 512 -kernel $builddir/arch/x86/boot/bzImage -append \"$qemu_append $boot_args\" > $resdir/qemu-cmd
11274813
PM
144if test -n "$RCU_BUILDONLY"
145then
146 echo Build-only run specified, boot/test omitted.
147 exit 0
148fi
be70a73a 149$QEMU $qemu_args -m 512 -kernel $builddir/arch/x86/boot/bzImage -append "$qemu_append $boot_args" &
c87b9c60
PM
150qemu_pid=$!
151commandcompleted=0
152echo Monitoring qemu job at pid $qemu_pid
153for ((i=0;i<$seconds;i++))
154do
155 if kill -0 $qemu_pid > /dev/null 2>&1
156 then
157 sleep 1
158 else
159 commandcompleted=1
160 kruntime=`awk 'BEGIN { print systime() - '"$kstarttime"' }' < /dev/null`
161 if test $kruntime -lt $seconds
162 then
163 echo Completed in $kruntime vs. $seconds >> $resdir/Warnings 2>&1
164 else
165 echo ' ---' `date`: Kernel done
166 fi
167 break
168 fi
169done
170if test $commandcompleted -eq 0
171then
172 echo Grace period for qemu job at pid $qemu_pid
173 for ((i=0;i<=$grace;i++))
174 do
175 if kill -0 $qemu_pid > /dev/null 2>&1
176 then
177 sleep 1
178 else
179 break
180 fi
181 if test $i -eq $grace
182 then
183 kruntime=`awk 'BEGIN { print systime() - '"$kstarttime"' }'`
184 echo "!!! Hang at $kruntime vs. $seconds seconds" >> $resdir/Warnings 2>&1
185 kill -KILL $qemu_pid
186 fi
187 done
188fi
189
190cp $builddir/console.log $resdir
6d40cc0c
PM
191parse-rcutorture.sh $resdir/console.log $title
192parse-console.sh $resdir/console.log $title
This page took 0.042879 seconds and 5 git commands to generate.