2 # SPDX-License-Identifier: GPL-2.0+
4 # Parse arguments common to the various scripts.
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.ibm.com>
14 T
=/tmp
/parseargs.sh.$$
17 # Initialize one parameter: initparam name default
19 echo if test -z '"$'$1'"' > $T/s
21 echo $1='"'$2'"' >> $T/s
22 echo export $1 >> $T/s
24 echo $1_DEF='$'$1 >> $T/s
28 initparam LKMM_DESTDIR
"."
29 initparam LKMM_HERD_OPTIONS
"-conf linux-kernel.cfg"
30 initparam LKMM_HW_MAP_FILE
""
31 initparam LKMM_JOBS
`getconf _NPROCESSORS_ONLN`
32 initparam LKMM_PROCS
"3"
33 initparam LKMM_TIMEOUT
"1m"
38 echo "Usage $scriptname [ arguments ]"
39 echo " --destdir path (place for .litmus.out, default by .litmus)"
40 echo " --herdopts -conf linux-kernel.cfg ..."
42 echo " --jobs N (number of jobs, default one per CPU)"
43 echo " --procs N (litmus tests with at most this many processes)"
44 echo " --timeout N (herd7 timeout (e.g., 10s, 1m, 2hr, 1d, '')"
45 echo "Defaults: --destdir '$LKMM_DESTDIR_DEF' --herdopts '$LKMM_HERD_OPTIONS_DEF' --hw '$LKMM_HW_MAP_FILE' --jobs '$LKMM_JOBS_DEF' --procs '$LKMM_PROCS_DEF' --timeout '$LKMM_TIMEOUT_DEF'"
53 # checkarg --argname argtype $# arg mustmatch cannotmatch
57 echo $1 needs argument
$2 matching
\"$5\"
60 if echo "$4" |
grep -q -e "$5"
64 echo $1 $2 \"$4\" must match
\"$5\"
67 if echo "$4" |
grep -q -e "$6"
69 echo $1 $2 \"$4\" must not match
\"$6\"
78 checkarg
--destdir "(path to directory)" "$#" "$2" '.\+' '^--'
80 mkdir
$LKMM_DESTDIR > /dev
/null
2>&1
81 if ! test -e "$LKMM_DESTDIR"
83 echo "Cannot create directory --destdir '$LKMM_DESTDIR'"
86 if test -d "$LKMM_DESTDIR" -a -x "$LKMM_DESTDIR"
90 echo "Directory --destdir '$LKMM_DESTDIR' insufficient permissions to create files"
96 checkarg
--destdir "(herd7 options)" "$#" "$2" '.*' '^--'
97 LKMM_HERD_OPTIONS
="$2"
101 checkarg
--hw "(.map file architecture name)" "$#" "$2" '^[A-Za-z0-9_-]\+' '^--'
102 LKMM_HW_MAP_FILE
="$2"
106 njobs
="`echo $1 | sed -e 's/^-j//'`"
107 trailchars
="`echo $njobs | sed -e 's/[0-9]\+\(.*\)$/\1/'`"
108 if test -n "$trailchars"
110 echo $1 trailing characters
"'$trailchars'"
113 LKMM_JOBS
="`echo $njobs | sed -e 's/^\([0-9]\+\).*$/\1/'`"
116 checkarg
--jobs "(number)" "$#" "$2" '^[1-9][0-9]*$' '^--'
121 checkarg
--procs "(number)" "$#" "$2" '^[0-9]\+$' '^--'
126 checkarg
--timeout "(timeout spec)" "$#" "$2" '^\([0-9]\+[smhd]\?\|\)$' '^--'
135 echo Unknown argument
$1
141 if test -z "$LKMM_TIMEOUT"
143 LKMM_TIMEOUT_CMD
=""; export LKMM_TIMEOUT_CMD
145 LKMM_TIMEOUT_CMD
="timeout $LKMM_TIMEOUT"; export LKMM_TIMEOUT_CMD