relocatable roots doesn't handle testr args/opts
Previous fix (4c891b9243)
changed how the args are parsed but didn't update the logic
for handling testr args/opts. As a result args/opts for testr
where not be properly passed.
This fixes corrects that oversite and now properly parses those
args as well.
Change-Id: I418b0478b2a180e497d041fcab25158c52f44bac
Fixes: #1116942
This commit is contained in:
1 changed files with 2 additions and 3 deletions
@@ -33,7 +33,6 @@ function usage {
function process_options {
i=1
while [ $i -le $# ]; do
FOO=${!i}
case "${!i}" in
-h|--help) usage;;
-V|--virtual-env) always_venv=1; never_venv=0;;
@@ -57,8 +56,8 @@ function process_options {
(( i++ ))
tools_path=${!i}
;;
-*) testropts="$testropts1ドル";;
*) testrargs="$testrargs1ドル"
-*) testropts="$testropts${!i}";;
*) testrargs="$testrargs${!i}"
esac
(( i++ ))
done
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.