kvm.sh 4.4 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#!/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

dur=30
KVM=`pwd`/tools/testing/selftests/rcutorture; export KVM
builddir=${KVM}/b1
resdir=""
configs=" sysidleY.2013.06.19a \
	  sysidleN.2013.06.19a \
	  P1-S-T-NH-SD-SMP-HP \
	  P2-2-t-nh-sd-SMP-hp \
	  P3-3-T-nh-SD-SMP-hp \
	  P4-A-t-NH-sd-SMP-HP \
	  P5-U-T-NH-sd-SMP-hp \
	  P6---t-nh-SD-smp-hp \
	  N1-S-T-NH-SD-SMP-HP \
	  N2-2-t-nh-sd-SMP-hp \
	  N3-3-T-nh-SD-SMP-hp \
	  N4-A-t-NH-sd-SMP-HP \
	  N5-U-T-NH-sd-SMP-hp \
	  PT1-nh \
	  PT2-NH \
	  NT1-nh \
	  NT3-NH"
53
ds=`date +%Y.%m.%d-%H:%M:%S`
54
kversion=""
55 56 57 58 59

usage () {
	echo "Usage: $scriptname optional arguments:"
	echo "       --builddir absolute-pathname"
	echo "       --configs \"config-file list\""
60
	echo "       --datestamp string"
61
	echo "       --duration minutes"
62
	echo "       --kversion vN.NN"
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	echo "       --rcu-kvm absolute-pathname"
	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
	echo ":$1:"
	case "$1" in
	--builddir)
		checkarg --builddir "(absolute pathname)" "$#" "$2" '^/' error
		builddir=$2
		gotbuilddir=1
		shift
		;;
	--configs)
		checkarg --configs "(list of config files)" "$#" "$2" '^[^/]*$' '^--'
		configs="$2"
		shift
		;;
105 106 107 108 109
	--datestamp)
		checkarg --datestamp "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
		ds=$2
		shift
		;;
110 111 112 113 114
	--duration)
		checkarg --duration "(minutes)" $# "$2" '^[0-9]*$' error
		dur=$2
		shift
		;;
115 116 117 118 119
	--kversion)
		checkarg --kversion "(kernel version)" $# "$2" '^v[0-9.]*$' error
		kversion=$2
		shift
		;;
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
	--rcu-kvm)
		checkarg --rcu-kvm "(absolute pathname)" "$#" "$2" '^/' error
		KVM=$2; export KVM
		if -z "$gotbuilddir"
		then
			builddir=${KVM}/b1
		fi
		if -n "$gotrelbuilddir"
		then
			builddir=${KVM}/${relbuilddir}
		fi
		shift
		;;
	--relbuilddir)
		checkarg --relbuilddir "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
		relbuilddir=$2
		gotrelbuilddir=1
		builddir=${KVM}/${relbuilddir}
		shift
		;;
	--results)
		checkarg --results "(absolute pathname)" "$#" "$2" '^/' error
		resdir=$2
		shift
		;;
	*)
		usage
		;;
	esac
	shift
done

echo "builddir=$builddir"
echo "dur=$dur"
echo "KVM=$KVM"
echo "resdir=$resdir"

PATH=${KVM}/bin:$PATH; export PATH
CONFIGFRAG=${KVM}/configs; export CONFIGFRAG

if test -z "$resdir"
then
	resdir=$KVM/res
	mkdir $resdir || :
else
165
	mkdir -p "$resdir" || :
166
fi
167 168 169
mkdir $resdir/$ds
echo Datestamp: $ds

170 171 172 173 174 175 176 177 178 179 180 181 182 183
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
mkdir $builddir || :

for CF in $configs
do
	rd=$resdir/$ds/$CF
	mkdir $rd || :
	echo Results directory: $rd
184
	kvm-test-1-rcu.sh $CONFIGFRAG/$kversion/$CF $builddir $rd $dur "-nographic" "rcutorture.test_no_idle_hz=1 rcutorture.n_barrier_cbs=4 rcutorture.verbose=1"
185 186
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