File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 202
202
}
203
203
run_list=$1 ; shift ;;
204
204
--run=* )
205
- run_list=$( expr " z $1 " : ' z[^=]*=\(.*\) ' ) ; shift ;;
205
+ run_list=${1 # -- * =} ; shift ;;
206
206
-h|--h|--he|--hel|--help)
207
207
help=t; shift ;;
208
208
-v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose)
209
209
verbose=t; shift ;;
210
210
--verbose-only=* )
211
- verbose_only=$( expr " z $1 " : ' z[^=]*=\(.*\) ' )
211
+ verbose_only=${1 # -- * =}
212
212
shift ;;
213
213
-q|--q|--qu|--qui|--quie|--quiet)
214
214
# Ignore --quiet under a TAP::Harness. Saying how many tests
222
222
valgrind=memcheck
223
223
shift ;;
224
224
--valgrind=* )
225
- valgrind=$( expr " z $1 " : ' z[^=]*=\(.*\) ' )
225
+ valgrind=${1 # -- * =}
226
226
shift ;;
227
227
--valgrind-only=* )
228
- valgrind_only=$( expr " z $1 " : ' z[^=]*=\(.*\) ' )
228
+ valgrind_only=${1 # -- * =}
229
229
shift ;;
230
230
--tee)
231
231
shift ;; # was handled already
232
232
--root=* )
233
- root=$( expr " z $1 " : ' z[^=]*=\(.*\) ' )
233
+ root=${1 # -- * =}
234
234
shift ;;
235
235
--chain-lint)
236
236
GIT_TEST_CHAIN_LINT=1
You can’t perform that action at this time.
0 commit comments