Merge "relocatable roots doesn't handle testr args/opts"
This commit is contained in:
commit
596e0b392a
@ -34,7 +34,6 @@ function usage {
|
|||||||
function process_options {
|
function process_options {
|
||||||
i=1
|
i=1
|
||||||
while [ $i -le $# ]; do
|
while [ $i -le $# ]; do
|
||||||
FOO=${!i}
|
|
||||||
case "${!i}" in
|
case "${!i}" in
|
||||||
-h|--help) usage;;
|
-h|--help) usage;;
|
||||||
-V|--virtual-env) always_venv=1; never_venv=0;;
|
-V|--virtual-env) always_venv=1; never_venv=0;;
|
||||||
@ -59,8 +58,8 @@ function process_options {
|
|||||||
(( i++ ))
|
(( i++ ))
|
||||||
tools_path=${!i}
|
tools_path=${!i}
|
||||||
;;
|
;;
|
||||||
-*) testropts="$testropts $1";;
|
-*) testropts="$testropts ${!i}";;
|
||||||
*) testrargs="$testrargs $1"
|
*) testrargs="$testrargs ${!i}"
|
||||||
esac
|
esac
|
||||||
(( i++ ))
|
(( i++ ))
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user