Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / scripts / parseargs.sh
blob40f52080fdbd6eb9d82bc3f3bb647fe1da46ffb8
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0+
4 # the corresponding .litmus.out file, and does not judge the result.
6 # . scripts/parseargs.sh
8 # Include into other Linux kernel tools/memory-model scripts.
10 # Copyright IBM Corporation, 2018
12 # Author: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
14 T=/tmp/parseargs.sh.$$
15 mkdir $T
17 # Initialize one parameter: initparam name default
18 initparam () {
19 echo if test -z '"$'$1'"' > $T/s
20 echo then >> $T/s
21 echo $1='"'$2'"' >> $T/s
22 echo export $1 >> $T/s
23 echo fi >> $T/s
24 echo $1_DEF='$'$1 >> $T/s
25 . $T/s
28 initparam LKMM_DESTDIR "."
29 initparam LKMM_HERD_OPTIONS "-conf linux-kernel.cfg"
30 initparam LKMM_JOBS `getconf _NPROCESSORS_ONLN`
31 initparam LKMM_PROCS "3"
32 initparam LKMM_TIMEOUT "1m"
34 scriptname=$0
36 usagehelp () {
37 echo "Usage $scriptname [ arguments ]"
38 echo " --destdir path (place for .litmus.out, default by .litmus)"
39 echo " --herdopts -conf linux-kernel.cfg ..."
40 echo " --jobs N (number of jobs, default one per CPU)"
41 echo " --procs N (litmus tests with at most this many processes)"
42 echo " --timeout N (herd7 timeout (e.g., 10s, 1m, 2hr, 1d, '')"
43 echo "Defaults: --destdir '$LKMM_DESTDIR_DEF' --herdopts '$LKMM_HERD_OPTIONS_DEF' --jobs '$LKMM_JOBS_DEF' --procs '$LKMM_PROCS_DEF' --timeout '$LKMM_TIMEOUT_DEF'"
44 exit 1
47 usage () {
48 usagehelp 1>&2
51 # checkarg --argname argtype $# arg mustmatch cannotmatch
52 checkarg () {
53 if test $3 -le 1
54 then
55 echo $1 needs argument $2 matching \"$5\"
56 usage
58 if echo "$4" | grep -q -e "$5"
59 then
61 else
62 echo $1 $2 \"$4\" must match \"$5\"
63 usage
65 if echo "$4" | grep -q -e "$6"
66 then
67 echo $1 $2 \"$4\" must not match \"$6\"
68 usage
72 while test $# -gt 0
74 case "$1" in
75 --destdir)
76 checkarg --destdir "(path to directory)" "$#" "$2" '.\+' '^--'
77 LKMM_DESTDIR="$2"
78 mkdir $LKMM_DESTDIR > /dev/null 2>&1
79 if ! test -e "$LKMM_DESTDIR"
80 then
81 echo "Cannot create directory --destdir '$LKMM_DESTDIR'"
82 usage
84 if test -d "$LKMM_DESTDIR" -a -w "$LKMM_DESTDIR" -a -x "$LKMM_DESTDIR"
85 then
87 else
88 echo "Directory --destdir '$LKMM_DESTDIR' insufficient permissions to create files"
89 usage
91 shift
93 --herdopts|--herdopt)
94 checkarg --destdir "(herd7 options)" "$#" "$2" '.*' '^--'
95 LKMM_HERD_OPTIONS="$2"
96 shift
98 -j[1-9]*)
99 njobs="`echo $1 | sed -e 's/^-j//'`"
100 trailchars="`echo $njobs | sed -e 's/[0-9]\+\(.*\)$/\1/'`"
101 if test -n "$trailchars"
102 then
103 echo $1 trailing characters "'$trailchars'"
104 usagehelp
106 LKMM_JOBS="`echo $njobs | sed -e 's/^\([0-9]\+\).*$/\1/'`"
108 --jobs|--job|-j)
109 checkarg --jobs "(number)" "$#" "$2" '^[1-9][0-9]\+$' '^--'
110 LKMM_JOBS="$2"
111 shift
113 --procs|--proc)
114 checkarg --procs "(number)" "$#" "$2" '^[0-9]\+$' '^--'
115 LKMM_PROCS="$2"
116 shift
118 --timeout)
119 checkarg --timeout "(timeout spec)" "$#" "$2" '^\([0-9]\+[smhd]\?\|\)$' '^--'
120 LKMM_TIMEOUT="$2"
121 shift
124 echo Unknown argument $1
125 usage
127 esac
128 shift
129 done
130 if test -z "$LKMM_TIMEOUT"
131 then
132 LKMM_TIMEOUT_CMD=""; export LKMM_TIMEOUT_CMD
133 else
134 LKMM_TIMEOUT_CMD="timeout $LKMM_TIMEOUT"; export LKMM_TIMEOUT_CMD
136 rm -rf $T