kvm.sh 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#!/bin/bash
#
# Run a series of 14 tests under KVM.  These are not particularly
# well-selected or well-tuned, but are the current set.  Run from the
# top level of the source tree.
#
# Edit the definitions below to set the locations of the various directories,
# as well as the test duration.
#
# Usage: sh kvm.sh [ options ]
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# Copyright (C) IBM Corporation, 2011
#
# Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>

scriptname=$0
31
args="$*"
32 33 34 35 36

dur=30
KVM=`pwd`/tools/testing/selftests/rcutorture; export KVM
builddir=${KVM}/b1
resdir=""
37
configs=""
38
ds=`date +%Y.%m.%d-%H:%M:%S`
39
kversion=""
40 41 42

usage () {
	echo "Usage: $scriptname optional arguments:"
43
	echo "       --bootargs kernel-boot-arguments"
44
	echo "       --builddir absolute-pathname"
45
	echo "       --buildonly"
46
	echo "       --configs \"config-file list\""
47
	echo "       --datestamp string"
48
	echo "       --duration minutes"
49
	echo "       --interactive"
50
	echo "       --kversion vN.NN"
51
	echo "       --mac nn:nn:nn:nn:nn:nn"
52
	echo "       --qemu-cmd qemu-system-..."
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
	echo "       --results absolute-pathname"
	echo "       --relbuilddir relative-pathname"
	exit 1
}

# checkarg --argname argtype $# arg mustmatch cannotmatch
checkarg () {
	if test $3 -le 1
	then
		echo $1 needs argument $2 matching \"$5\"
		usage
	fi
	if echo "$4" | grep -q -e "$5"
	then
		:
	else
		echo $1 $2 \"$4\" must match \"$5\"
		usage
	fi
	if echo "$4" | grep -q -e "$6"
	then
		echo $1 $2 \"$4\" must not match \"$6\"
		usage
	fi
}

while test $# -gt 0
do
	case "$1" in
82 83 84 85 86
	--bootargs)
		checkarg --bootargs "(list of kernel boot arguments)" "$#" "$2" '.*' '^--'
		RCU_BOOTARGS="$2"
		shift
		;;
87 88 89 90 91 92
	--builddir)
		checkarg --builddir "(absolute pathname)" "$#" "$2" '^/' error
		builddir=$2
		gotbuilddir=1
		shift
		;;
93 94 95
	--buildonly)
		RCU_BUILDONLY=1; export RCU_BUILDONLY
		;;
96 97 98 99 100
	--configs)
		checkarg --configs "(list of config files)" "$#" "$2" '^[^/]*$' '^--'
		configs="$2"
		shift
		;;
101 102 103 104 105
	--datestamp)
		checkarg --datestamp "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
		ds=$2
		shift
		;;
106 107 108 109 110
	--duration)
		checkarg --duration "(minutes)" $# "$2" '^[0-9]*$' error
		dur=$2
		shift
		;;
111 112 113
	--interactive)
		RCU_QEMU_INTERACTIVE=1; export RCU_QEMU_INTERACTIVE
		;;
114 115 116 117 118
	--kversion)
		checkarg --kversion "(kernel version)" $# "$2" '^v[0-9.]*$' error
		kversion=$2
		shift
		;;
119 120 121 122 123
	--mac)
		checkarg --mac "(MAC address)" $# "$2" '^\([0-9a-fA-F]\{2\}:\)\{5\}[0-9a-fA-F]\{2\}$' error
		RCU_QEMU_MAC=$2; export RCU_QEMU_MAC
		shift
		;;
124 125 126 127 128
	--qemu-cmd)
		checkarg --qemu-cmd "(qemu-system-...)" $# "$2" 'qemu-system-' '^--'
		RCU_QEMU_CMD="$2"; export RCU_QEMU_CMD
		shift
		;;
129 130 131 132 133 134 135 136 137 138 139 140 141
	--relbuilddir)
		checkarg --relbuilddir "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
		relbuilddir=$2
		gotrelbuilddir=1
		builddir=${KVM}/${relbuilddir}
		shift
		;;
	--results)
		checkarg --results "(absolute pathname)" "$#" "$2" '^/' error
		resdir=$2
		shift
		;;
	*)
142
		echo Unknown argument $1
143 144 145 146 147 148 149 150
		usage
		;;
	esac
	shift
done

PATH=${KVM}/bin:$PATH; export PATH
CONFIGFRAG=${KVM}/configs; export CONFIGFRAG
151 152 153 154 155 156
KVPATH=${CONFIGFRAG}/$kversion; export KVPATH

if test -z "$configs"
then
	configs="`cat $CONFIGFRAG/$kversion/CFLIST`"
fi
157 158 159 160

if test -z "$resdir"
then
	resdir=$KVM/res
161 162 163 164
	if ! test -e $resdir
	then
		mkdir $resdir || :
	fi
165
else
166 167 168 169
	if ! test -e $resdir
	then
		mkdir -p "$resdir" || :
	fi
170
fi
171
mkdir $resdir/$ds
172 173
touch $resdir/$ds/log
echo $scriptname $args >> $resdir/$ds/log
174

175 176 177 178 179 180 181
pwd > $resdir/$ds/testid.txt
if test -d .git
then
	git status >> $resdir/$ds/testid.txt
	git rev-parse HEAD >> $resdir/$ds/testid.txt
fi
builddir=$KVM/b1
182 183 184 185
if ! test -e $builddir
then
	mkdir $builddir || :
fi
186 187 188 189 190 191

for CF in $configs
do
	rd=$resdir/$ds/$CF
	mkdir $rd || :
	echo Results directory: $rd
192
	kvm-test-1-rcu.sh $CONFIGFRAG/$kversion/$CF $builddir $rd $dur "-nographic" "rcutorture.test_no_idle_hz=1 rcutorture.verbose=1 $RCU_BOOTARGS"
193 194
done
# Tracing: trace_event=rcu:rcu_nocb_grace_period,rcu:rcu_grace_period,rcu:rcu_grace_period_init,rcu:rcu_quiescent_state_report,rcu:rcu_fqs,rcu:rcu_callback,rcu:rcu_torture_read,rcu:rcu_invoke_callback,rcu:rcu_fqs,rcu:rcu_dyntick,rcu:rcu_unlock_preempted_task