blob: 2af549491f2388903ae736a46da106b45f663bc0 [file] [log] [blame]
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07001#!/bin/bash
2#
3# Run a series of 14 tests under KVM. These are not particularly
4# well-selected or well-tuned, but are the current set. Run from the
5# top level of the source tree.
6#
7# Edit the definitions below to set the locations of the various directories,
8# as well as the test duration.
9#
10# Usage: sh kvm.sh [ options ]
11#
12# This program is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation; either version 2 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25#
26# Copyright (C) IBM Corporation, 2011
27#
28# Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
29
30scriptname=$0
Paul E. McKenney330a76f2013-09-30 14:49:43 -070031args="$*"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070032
33dur=30
34KVM=`pwd`/tools/testing/selftests/rcutorture; export KVM
35builddir=${KVM}/b1
36resdir=""
Paul E. McKenney4275be82013-09-29 11:13:46 -070037configs=""
Paul E. McKenney847bfd22013-09-28 18:44:11 -070038ds=`date +%Y.%m.%d-%H:%M:%S`
Paul E. McKenneybb918532013-09-28 20:37:45 -070039kversion=""
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070040
41usage () {
42 echo "Usage: $scriptname optional arguments:"
43 echo " --builddir absolute-pathname"
44 echo " --configs \"config-file list\""
Paul E. McKenney847bfd22013-09-28 18:44:11 -070045 echo " --datestamp string"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070046 echo " --duration minutes"
Paul E. McKenneybb918532013-09-28 20:37:45 -070047 echo " --kversion vN.NN"
Paul E. McKenney4f8a0312013-09-30 17:17:57 -070048 echo " --qemu-cmd qemu-system-..."
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070049 echo " --results absolute-pathname"
50 echo " --relbuilddir relative-pathname"
51 exit 1
52}
53
54# checkarg --argname argtype $# arg mustmatch cannotmatch
55checkarg () {
56 if test $3 -le 1
57 then
58 echo $1 needs argument $2 matching \"$5\"
59 usage
60 fi
61 if echo "$4" | grep -q -e "$5"
62 then
63 :
64 else
65 echo $1 $2 \"$4\" must match \"$5\"
66 usage
67 fi
68 if echo "$4" | grep -q -e "$6"
69 then
70 echo $1 $2 \"$4\" must not match \"$6\"
71 usage
72 fi
73}
74
75while test $# -gt 0
76do
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070077 case "$1" in
78 --builddir)
79 checkarg --builddir "(absolute pathname)" "$#" "$2" '^/' error
80 builddir=$2
81 gotbuilddir=1
82 shift
83 ;;
84 --configs)
85 checkarg --configs "(list of config files)" "$#" "$2" '^[^/]*$' '^--'
86 configs="$2"
87 shift
88 ;;
Paul E. McKenney847bfd22013-09-28 18:44:11 -070089 --datestamp)
90 checkarg --datestamp "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
91 ds=$2
92 shift
93 ;;
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070094 --duration)
95 checkarg --duration "(minutes)" $# "$2" '^[0-9]*$' error
96 dur=$2
97 shift
98 ;;
Paul E. McKenneybb918532013-09-28 20:37:45 -070099 --kversion)
100 checkarg --kversion "(kernel version)" $# "$2" '^v[0-9.]*$' error
101 kversion=$2
102 shift
103 ;;
Paul E. McKenney4f8a0312013-09-30 17:17:57 -0700104 --qemu-cmd)
105 checkarg --qemu-cmd "(qemu-system-...)" $# "$2" 'qemu-system-' '^--'
106 RCU_QEMU_CMD="$2"; export RCU_QEMU_CMD
107 shift
108 ;;
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700109 --relbuilddir)
110 checkarg --relbuilddir "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
111 relbuilddir=$2
112 gotrelbuilddir=1
113 builddir=${KVM}/${relbuilddir}
114 shift
115 ;;
116 --results)
117 checkarg --results "(absolute pathname)" "$#" "$2" '^/' error
118 resdir=$2
119 shift
120 ;;
121 *)
Paul E. McKenney2bcdf4e2013-10-01 10:14:09 -0700122 echo Unknown argument $1
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700123 usage
124 ;;
125 esac
126 shift
127done
128
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700129PATH=${KVM}/bin:$PATH; export PATH
130CONFIGFRAG=${KVM}/configs; export CONFIGFRAG
Paul E. McKenney4275be82013-09-29 11:13:46 -0700131KVPATH=${CONFIGFRAG}/$kversion; export KVPATH
132
133if test -z "$configs"
134then
135 configs="`cat $CONFIGFRAG/$kversion/CFLIST`"
136fi
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700137
138if test -z "$resdir"
139then
140 resdir=$KVM/res
Paul E. McKenney330a76f2013-09-30 14:49:43 -0700141 if ! test -e $resdir
142 then
143 mkdir $resdir || :
144 fi
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700145else
Paul E. McKenney330a76f2013-09-30 14:49:43 -0700146 if ! test -e $resdir
147 then
148 mkdir -p "$resdir" || :
149 fi
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700150fi
Paul E. McKenney847bfd22013-09-28 18:44:11 -0700151mkdir $resdir/$ds
Paul E. McKenney330a76f2013-09-30 14:49:43 -0700152touch $resdir/$ds/log
153echo $scriptname $args >> $resdir/$ds/log
Paul E. McKenney847bfd22013-09-28 18:44:11 -0700154
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700155pwd > $resdir/$ds/testid.txt
156if test -d .git
157then
158 git status >> $resdir/$ds/testid.txt
159 git rev-parse HEAD >> $resdir/$ds/testid.txt
160fi
161builddir=$KVM/b1
Paul E. McKenney330a76f2013-09-30 14:49:43 -0700162if ! test -e $builddir
163then
164 mkdir $builddir || :
165fi
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700166
167for CF in $configs
168do
169 rd=$resdir/$ds/$CF
170 mkdir $rd || :
171 echo Results directory: $rd
Paul E. McKenney4275be82013-09-29 11:13:46 -0700172 kvm-test-1-rcu.sh $CONFIGFRAG/$kversion/$CF $builddir $rd $dur "-nographic" "rcutorture.test_no_idle_hz=1 rcutorture.verbose=1"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700173done
174# 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