blob: 37960d707d3e71ff0d4656ee6e3715181f60a162 [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
Paul E. McKenney0e342a82013-12-03 09:54:18 -080023# along with this program; if not, you can access it online at
24# http://www.gnu.org/licenses/gpl-2.0.html.
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070025#
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
Paul E. McKenney43e38ab2014-01-15 15:48:41 -080033T=/tmp/kvm.sh.$$
34trap 'rm -rf $T' 0
35mkdir $T
36
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070037dur=30
Paul E. McKenneya7582812014-01-17 03:10:16 -080038dryrun=""
Paul E. McKenney73931b52013-10-15 10:42:25 -070039KVM="`pwd`/tools/testing/selftests/rcutorture"; export KVM
Paul E. McKenney32caccb2013-10-28 08:57:29 -070040PATH=${KVM}/bin:$PATH; export PATH
Paul E. McKenney8c55f222014-02-26 14:28:43 -080041TORTURE_DEFCONFIG=defconfig
Paul E. McKenney2f66dbc2014-02-26 11:16:07 -080042TORTURE_INITRD="$KVM/initrd"; export TORTURE_INITRD
Paul E. McKenney58d280b2014-02-26 15:23:21 -080043TORTURE_KMAKE_ARG=""
Paul E. McKenney61010e72014-02-07 10:29:49 -080044TORTURE_SUITE=rcu
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070045resdir=""
Paul E. McKenney4275be82013-09-29 11:13:46 -070046configs=""
Paul E. McKenney43e38ab2014-01-15 15:48:41 -080047cpus=0
Paul E. McKenney847bfd22013-09-28 18:44:11 -070048ds=`date +%Y.%m.%d-%H:%M:%S`
Paul E. McKenneybb918532013-09-28 20:37:45 -070049kversion=""
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070050
Paul E. McKenney32caccb2013-10-28 08:57:29 -070051. functions.sh
52
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070053usage () {
54 echo "Usage: $scriptname optional arguments:"
Paul E. McKenney7dca9272013-10-14 08:19:39 -070055 echo " --bootargs kernel-boot-arguments"
Paul E. McKenney11274812013-10-10 14:52:07 -070056 echo " --buildonly"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070057 echo " --configs \"config-file list\""
Paul E. McKenney43e38ab2014-01-15 15:48:41 -080058 echo " --cpus N"
Paul E. McKenney847bfd22013-09-28 18:44:11 -070059 echo " --datestamp string"
Paul E. McKenney8c55f222014-02-26 14:28:43 -080060 echo " --defconfig string"
Paul E. McKenneya7582812014-01-17 03:10:16 -080061 echo " --dryrun sched|script"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070062 echo " --duration minutes"
Paul E. McKenney315c5402013-10-04 13:15:55 -070063 echo " --interactive"
Paul E. McKenney74878fb2013-10-15 11:51:23 -070064 echo " --kmake-arg kernel-make-arguments"
Paul E. McKenneybb918532013-09-28 20:37:45 -070065 echo " --kversion vN.NN"
Paul E. McKenney315c5402013-10-04 13:15:55 -070066 echo " --mac nn:nn:nn:nn:nn:nn"
Paul E. McKenney73931b52013-10-15 10:42:25 -070067 echo " --no-initrd"
Paul E. McKenneye9ce6402013-10-15 09:22:48 -070068 echo " --qemu-args qemu-system-..."
Paul E. McKenney4f8a0312013-09-30 17:17:57 -070069 echo " --qemu-cmd qemu-system-..."
Paul E. McKenney61010e72014-02-07 10:29:49 -080070 echo " --results absolute-pathname"
71 echo " --torture rcu"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070072 exit 1
73}
74
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070075while test $# -gt 0
76do
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070077 case "$1" in
Paul E. McKenney7dca9272013-10-14 08:19:39 -070078 --bootargs)
79 checkarg --bootargs "(list of kernel boot arguments)" "$#" "$2" '.*' '^--'
Paul E. McKenney98bc8cc2014-02-26 15:28:53 -080080 TORTURE_BOOTARGS="$2"
Paul E. McKenney7dca9272013-10-14 08:19:39 -070081 shift
82 ;;
Paul E. McKenney11274812013-10-10 14:52:07 -070083 --buildonly)
Paul E. McKenney805ffee2014-02-26 15:39:41 -080084 TORTURE_BUILDONLY=1
Paul E. McKenney11274812013-10-10 14:52:07 -070085 ;;
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070086 --configs)
87 checkarg --configs "(list of config files)" "$#" "$2" '^[^/]*$' '^--'
88 configs="$2"
89 shift
90 ;;
Paul E. McKenney43e38ab2014-01-15 15:48:41 -080091 --cpus)
92 checkarg --cpus "(number)" "$#" "$2" '^[0-9]*$' '^--'
93 cpus=$2
94 shift
95 ;;
Paul E. McKenney847bfd22013-09-28 18:44:11 -070096 --datestamp)
97 checkarg --datestamp "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
98 ds=$2
99 shift
100 ;;
Paul E. McKenney8c55f222014-02-26 14:28:43 -0800101 --defconfig)
102 checkarg --defconfig "defconfigtype" "$#" "$2" '^[^/][^/]*$' '^--'
103 TORTURE_DEFCONFIG=$2
104 shift
105 ;;
Paul E. McKenneya7582812014-01-17 03:10:16 -0800106 --dryrun)
107 checkarg --dryrun "sched|script" $# "$2" 'sched\|script' '^--'
108 dryrun=$2
109 shift
110 ;;
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700111 --duration)
Paul E. McKenneye9ce6402013-10-15 09:22:48 -0700112 checkarg --duration "(minutes)" $# "$2" '^[0-9]*$' '^error'
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700113 dur=$2
114 shift
115 ;;
Paul E. McKenney315c5402013-10-04 13:15:55 -0700116 --interactive)
Paul E. McKenneya0edd472014-02-26 16:38:52 -0800117 TORTURE_QEMU_INTERACTIVE=1; export TORTURE_QEMU_INTERACTIVE
Paul E. McKenney315c5402013-10-04 13:15:55 -0700118 ;;
Paul E. McKenney74878fb2013-10-15 11:51:23 -0700119 --kmake-arg)
120 checkarg --kmake-arg "(kernel make arguments)" $# "$2" '.*' '^error$'
Paul E. McKenney58d280b2014-02-26 15:23:21 -0800121 TORTURE_KMAKE_ARG="$2"
Paul E. McKenney74878fb2013-10-15 11:51:23 -0700122 shift
123 ;;
Paul E. McKenneybb918532013-09-28 20:37:45 -0700124 --kversion)
Paul E. McKenneye9ce6402013-10-15 09:22:48 -0700125 checkarg --kversion "(kernel version)" $# "$2" '^v[0-9.]*$' '^error'
Paul E. McKenneybb918532013-09-28 20:37:45 -0700126 kversion=$2
127 shift
128 ;;
Paul E. McKenney315c5402013-10-04 13:15:55 -0700129 --mac)
130 checkarg --mac "(MAC address)" $# "$2" '^\([0-9a-fA-F]\{2\}:\)\{5\}[0-9a-fA-F]\{2\}$' error
Paul E. McKenney58f724f2014-02-26 16:41:18 -0800131 TORTURE_QEMU_MAC=$2
Paul E. McKenney315c5402013-10-04 13:15:55 -0700132 shift
133 ;;
Paul E. McKenney73931b52013-10-15 10:42:25 -0700134 --no-initrd)
Paul E. McKenney2f66dbc2014-02-26 11:16:07 -0800135 TORTURE_INITRD=""; export TORTURE_INITRD
Paul E. McKenney73931b52013-10-15 10:42:25 -0700136 ;;
Paul E. McKenneye9ce6402013-10-15 09:22:48 -0700137 --qemu-args)
138 checkarg --qemu-args "-qemu args" $# "$2" '^-' '^error'
Paul E. McKenneyd1b1e512014-02-26 16:42:46 -0800139 TORTURE_QEMU_ARG="$2"
Paul E. McKenneye9ce6402013-10-15 09:22:48 -0700140 shift
141 ;;
Paul E. McKenney4f8a0312013-09-30 17:17:57 -0700142 --qemu-cmd)
143 checkarg --qemu-cmd "(qemu-system-...)" $# "$2" 'qemu-system-' '^--'
Paul E. McKenney250da312014-02-26 16:44:26 -0800144 TORTURE_QEMU_CMD="$2"
Paul E. McKenney4f8a0312013-09-30 17:17:57 -0700145 shift
146 ;;
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700147 --results)
Paul E. McKenneye9ce6402013-10-15 09:22:48 -0700148 checkarg --results "(absolute pathname)" "$#" "$2" '^/' '^error'
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700149 resdir=$2
150 shift
151 ;;
Paul E. McKenney61010e72014-02-07 10:29:49 -0800152 --torture)
Paul E. McKenney9dfa5b32014-02-07 13:56:37 -0800153 checkarg --torture "(suite name)" "$#" "$2" '^\(lock\|rcu\)$' '^--'
Paul E. McKenney61010e72014-02-07 10:29:49 -0800154 TORTURE_SUITE=$2
155 shift
156 ;;
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700157 *)
Paul E. McKenney2bcdf4e2013-10-01 10:14:09 -0700158 echo Unknown argument $1
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700159 usage
160 ;;
161 esac
162 shift
163done
164
Paul E. McKenney61010e72014-02-07 10:29:49 -0800165CONFIGFRAG=${KVM}/configs/${TORTURE_SUITE}; export CONFIGFRAG
Paul E. McKenney4275be82013-09-29 11:13:46 -0700166KVPATH=${CONFIGFRAG}/$kversion; export KVPATH
167
168if test -z "$configs"
169then
170 configs="`cat $CONFIGFRAG/$kversion/CFLIST`"
171fi
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700172
173if test -z "$resdir"
174then
175 resdir=$KVM/res
Paul E. McKenneydaeda232014-01-27 12:31:20 -0800176fi
177
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800178# Create a file of test-name/#cpus pairs, sorted by decreasing #cpus.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800179touch $T/cfgcpu
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700180for CF in $configs
181do
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800182 if test -f "$CONFIGFRAG/$kversion/$CF"
Paul E. McKenneyf43f8f72013-10-19 06:28:21 -0700183 then
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800184 echo $CF `configNR_CPUS.sh $CONFIGFRAG/$kversion/$CF` >> $T/cfgcpu
185 else
186 echo "The --configs file $CF does not exist, terminating."
187 exit 1
Paul E. McKenneyf43f8f72013-10-19 06:28:21 -0700188 fi
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -0700189done
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800190sort -k2nr $T/cfgcpu > $T/cfgcpu.sort
191
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800192# Use a greedy bin-packing algorithm, sorting the list accordingly.
Paul E. McKenney53954672014-01-17 14:18:05 -0800193awk < $T/cfgcpu.sort > $T/cfgcpu.pack -v ncpus=$cpus '
194BEGIN {
195 njobs = 0;
196}
197
198{
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800199 # Read file of tests and corresponding required numbers of CPUs.
Paul E. McKenney53954672014-01-17 14:18:05 -0800200 cf[njobs] = $1;
201 cpus[njobs] = $2;
202 njobs++;
203}
204
205END {
206 alldone = 0;
207 batch = 0;
208 nc = -1;
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800209
210 # Each pass through the following loop creates on test batch
211 # that can be executed concurrently given ncpus. Note that a
212 # given test that requires more than the available CPUs will run in
213 # their own batch. Such tests just have to make do with what
214 # is available.
Paul E. McKenney53954672014-01-17 14:18:05 -0800215 while (nc != ncpus) {
216 batch++;
217 nc = ncpus;
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800218
219 # Each pass through the following loop considers one
220 # test for inclusion in the current batch.
Paul E. McKenney53954672014-01-17 14:18:05 -0800221 for (i = 0; i < njobs; i++) {
222 if (done[i])
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800223 continue; # Already part of a batch.
Paul E. McKenney53954672014-01-17 14:18:05 -0800224 if (nc >= cpus[i] || nc == ncpus) {
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800225
226 # This test fits into the current batch.
Paul E. McKenney53954672014-01-17 14:18:05 -0800227 done[i] = batch;
228 nc -= cpus[i];
229 if (nc <= 0)
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800230 break; # Too-big test in its own batch.
Paul E. McKenney53954672014-01-17 14:18:05 -0800231 }
232 }
233 }
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800234
235 # Dump out the tests in batch order.
Paul E. McKenney53954672014-01-17 14:18:05 -0800236 for (b = 1; b <= batch; b++)
237 for (i = 0; i < njobs; i++)
238 if (done[i] == b)
239 print cf[i], cpus[i];
240}'
241
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800242# Generate a script to execute the tests in appropriate batches.
Paul E. McKenney61010e72014-02-07 10:29:49 -0800243cat << ___EOF___ > $T/script
Paul E. McKenney14d9d842014-02-27 20:26:57 -0800244CONFIGFRAG="$CONFIGFRAG"; export CONFIGFRAG
245KVM="$KVM"; export KVM
246KVPATH="$KVPATH"; export KVPATH
247PATH="$PATH"; export PATH
248TORTURE_BUILDONLY="$TORTURE_BUILDONLY"; export TORTURE_BUILDONLY
Paul E. McKenney8c55f222014-02-26 14:28:43 -0800249TORTURE_DEFCONFIG="$TORTURE_DEFCONFIG"; export TORTURE_DEFCONFIG
Paul E. McKenney14d9d842014-02-27 20:26:57 -0800250TORTURE_INITRD="$TORTURE_INITRD"; export TORTURE_INITRD
251TORTURE_KMAKE_ARG="$TORTURE_KMAKE_ARG"; export TORTURE_KMAKE_ARG
252TORTURE_QEMU_CMD="$TORTURE_QEMU_CMD"; export TORTURE_QEMU_CMD
253TORTURE_QEMU_INTERACTIVE="$TORTURE_QEMU_INTERACTIVE"; export TORTURE_QEMU_INTERACTIVE
254TORTURE_QEMU_MAC="$TORTURE_QEMU_MAC"; export TORTURE_QEMU_MAC
255TORTURE_SUITE="$TORTURE_SUITE"; export TORTURE_SUITE
Paul E. McKenney1f5d0922014-02-27 17:11:11 -0800256if ! test -e $resdir
257then
258 mkdir -p "$resdir" || :
259fi
260mkdir $resdir/$ds
261echo Results directory: $resdir/$ds
262echo $scriptname $args
263touch $resdir/$ds/log
264echo $scriptname $args >> $resdir/$ds/log
265echo ${TORTURE_SUITE} > $resdir/$ds/TORTURE_SUITE
266pwd > $resdir/$ds/testid.txt
267if test -d .git
268then
269 git status >> $resdir/$ds/testid.txt
270 git rev-parse HEAD >> $resdir/$ds/testid.txt
271fi
Paul E. McKenney61010e72014-02-07 10:29:49 -0800272___EOF___
Paul E. McKenney53954672014-01-17 14:18:05 -0800273awk < $T/cfgcpu.pack \
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800274 -v CONFIGDIR="$CONFIGFRAG/$kversion/" \
275 -v KVM="$KVM" \
276 -v ncpus=$cpus \
277 -v rd=$resdir/$ds/ \
278 -v dur=$dur \
Paul E. McKenney06188732014-03-06 13:20:54 -0800279 -v TORTURE_QEMU_ARG="$TORTURE_QEMU_ARG" \
280 -v TORTURE_BOOTARGS="$TORTURE_BOOTARGS" \
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800281'BEGIN {
282 i = 0;
283}
284
285{
286 cf[i] = $1;
287 cpus[i] = $2;
288 i++;
289}
290
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800291# Dump out the scripting required to run one test batch.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800292function dump(first, pastlast)
293{
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800294 print "echo ----Start batch: `date`";
295 print "echo ----Start batch: `date` >> " rd "/log";
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800296 jn=1
297 for (j = first; j < pastlast; j++) {
298 builddir=KVM "/b" jn
Paul E. McKenney0ae3f732014-01-17 03:29:12 -0800299 cpusr[jn] = cpus[j];
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800300 if (cfrep[cf[j]] == "") {
Paul E. McKenney0ae3f732014-01-17 03:29:12 -0800301 cfr[jn] = cf[j];
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800302 cfrep[cf[j]] = 1;
303 } else {
304 cfrep[cf[j]]++;
Paul E. McKenney0ae3f732014-01-17 03:29:12 -0800305 cfr[jn] = cf[j] "." cfrep[cf[j]];
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800306 }
Paul E. McKenneydf1cc812014-01-17 22:08:09 -0800307 if (cpusr[jn] > ncpus && ncpus != 0)
308 ovf = "(!)";
309 else
310 ovf = "";
Paul E. McKenney3c626232014-01-30 15:29:29 -0800311 print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date`";
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800312 print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date` >> " rd "/log";
Paul E. McKenney0ae3f732014-01-17 03:29:12 -0800313 print "rm -f " builddir ".*";
314 print "touch " builddir ".wait";
315 print "mkdir " builddir " > /dev/null 2>&1 || :";
316 print "mkdir " rd cfr[jn] " || :";
Paul E. McKenneyd1b1e512014-02-26 16:42:46 -0800317 print "kvm-test-1-run.sh " CONFIGDIR cf[j], builddir, rd cfr[jn], dur " \"" TORTURE_QEMU_ARG "\" \"" TORTURE_BOOTARGS "\" > " rd cfr[jn] "/kvm-test-1-run.sh.out 2>&1 &"
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800318 print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date`";
319 print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date` >> " rd "/log";
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800320 print "while test -f " builddir ".wait"
321 print "do"
322 print "\tsleep 1"
323 print "done"
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800324 print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date`";
325 print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date` >> " rd "/log";
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800326 jn++;
327 }
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800328 for (j = 1; j < jn; j++) {
329 builddir=KVM "/b" j
330 print "rm -f " builddir ".ready"
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800331 print "echo ----", cfr[j], cpusr[j] ovf ": Starting kernel. `date`";
332 print "echo ----", cfr[j], cpusr[j] ovf ": Starting kernel. `date` >> " rd "/log";
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800333 }
334 print "wait"
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800335 print "echo ---- All kernel runs complete. `date`";
336 print "echo ---- All kernel runs complete. `date` >> " rd "/log";
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800337 for (j = 1; j < jn; j++) {
338 builddir=KVM "/b" j
Paul E. McKenney73fa8672014-02-11 12:16:14 -0800339 print "echo ----", cfr[j], cpusr[j] ovf ": Build/run results:";
340 print "echo ----", cfr[j], cpusr[j] ovf ": Build/run results: >> " rd "/log";
341 print "cat " rd cfr[j] "/kvm-test-1-run.sh.out";
342 print "cat " rd cfr[j] "/kvm-test-1-run.sh.out >> " rd "/log";
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800343 }
344}
345
346END {
347 njobs = i;
348 nc = ncpus;
349 first = 0;
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800350
351 # Each pass through the following loop considers one test.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800352 for (i = 0; i < njobs; i++) {
353 if (ncpus == 0) {
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800354 # Sequential test specified, each test its own batch.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800355 dump(i, i + 1);
356 first = i;
357 } else if (nc < cpus[i] && i != 0) {
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800358 # Out of CPUs, dump out a batch.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800359 dump(first, i);
360 first = i;
361 nc = ncpus;
362 }
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800363 # Account for the CPUs needed by the current test.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800364 nc -= cpus[i];
365 }
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800366 # Dump the last batch.
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800367 if (ncpus != 0)
368 dump(first, i);
Paul E. McKenney61010e72014-02-07 10:29:49 -0800369}' >> $T/script
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800370
Paul E. McKenney1f5d0922014-02-27 17:11:11 -0800371cat << ___EOF___ >> $T/script
372echo
373echo
374echo " --- `date` Test summary:"
375echo Results directory: $resdir/$ds
376if test -z "$TORTURE_BUILDONLY"
377then
378 kvm-recheck.sh $resdir/$ds
379fi
380___EOF___
381
Paul E. McKenneya7582812014-01-17 03:10:16 -0800382if test "$dryrun" = script
383then
Paul E. McKenneya7582812014-01-17 03:10:16 -0800384 cat $T/script
385 exit 0
386elif test "$dryrun" = sched
387then
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800388 # Extract the test run schedule from the script.
Paul E. McKenney9352ad12014-02-26 09:10:26 -0800389 egrep 'Start batch|Starting build\.' $T/script |
390 grep -v ">>" |
Paul E. McKenneya7582812014-01-17 03:10:16 -0800391 sed -e 's/:.*$//' -e 's/^echo //'
392 exit 0
393else
Paul E. McKenney78ad0692014-01-17 21:56:57 -0800394 # Not a dryru, so run the script.
Paul E. McKenneya7582812014-01-17 03:10:16 -0800395 sh $T/script
396fi
Paul E. McKenney43e38ab2014-01-15 15:48:41 -0800397
Paul E. McKenney782ab4c2013-10-15 12:11:24 -0700398# Tracing: trace_event=rcu:rcu_grace_period,rcu:rcu_future_grace_period,rcu:rcu_grace_period_init,rcu:rcu_nocb_wake,rcu:rcu_preempt_task,rcu:rcu_unlock_preempted_task,rcu:rcu_quiescent_state_report,rcu:rcu_fqs,rcu:rcu_callback,rcu:rcu_kfree_callback,rcu:rcu_batch_start,rcu:rcu_invoke_callback,rcu:rcu_invoke_kfree_callback,rcu:rcu_batch_end,rcu:rcu_torture_read,rcu:rcu_barrier