Skip to content

Commit

Permalink
Wrapped defaults in strings
Browse files Browse the repository at this point in the history
Signed-off-by: ddimatos <[email protected]>
  • Loading branch information
ddimatos committed Sep 7, 2024
1 parent 909c891 commit 073e43c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ac
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ test_concurrent(){
# --extra -> --extr -> extra=$20 -> pass through -> "cd `pwd`"
# ----------------------------------------------------------------------------------------------------------------------------------

# echo "host=${1} user=${2} python=${3} zoau=${4} pythonpath=${5} volumes=${6} file=${7} skip=${8} itr=${9} replay=${10}"\
# "timeout=${11} throttle=${12} workers=${13} maxjob=${14} maxnode=${15} bal=${16} verbose=${17} verbosity=${18} debug=${19} extra=${20} returncode=${21}"
echo "host=${1} user=${2} python=${3} zoau=${4} pythonpath=${5} volumes=${6} file=${7} skip=${8} itr=${9} replay=${10}"\
"timeout=${11} throttle=${12} workers=${13} maxjob=${14} maxnode=${15} bal=${16} verbose=${17} verbosity=${18} debug=${19} extra=${20} returncode=${21}"

host="${1}"
user="${2}"
Expand Down Expand Up @@ -1967,11 +1967,11 @@ elif [ "$option_submitted" ] && [ "$option_submitted" = "--ac-sanity" ] ; then
elif [ "$option_submitted" ] && [ "$option_submitted" = "--ac-test" ] ; then
ac_test ${host:=""} ${python:=""} ${zoau:=""} ${file:=""} ${test:=""} ${debug:=""} ${name:=""}
elif [ "$option_submitted" ] && [ "$option_submitted" = "--test-concurrent" ] ; then
test_concurrent ${host:=""} ${user:=""} ${python:=""} ${zoau:=""} ${pythonpath:=""}\
${volumes:="222222,000000"} ${file:="functional/*,unit/*"} "${skip:="test_module_security.py"}"\
${itr:="50"} ${replay:="5"} ${timeout:="300"} ${throttle:="True"} ${workers:="1"}\
${maxjob:="10"} ${maxnode:="30"} ${bal:="10"} ${verbose:="False"} ${verbosity:="0"}\
${debug:="False"} ${extra:="cd `pwd`"} ${returncode:="False"}
test_concurrent "${host:=''}" "${user:=''}" "${python:=''}" "${zoau:=''}" "${pythonpath:=''}"\
"${volumes:='222222,000000'}" "${file:='functional/*,unit/*'}" "${skip:='test_module_security.py'}"\
"${itr:='50'}" "${replay:='5'}" "${timeout:="300"}" "${throttle:='True'}" "${workers:="1"}"\
"${maxjob:="10"}" "${maxnode:="30"}" "${bal:="10"}" "${verbose:='False'}" "${verbosity:="0"}"\
"${debug:='False'}" "${extra:='cd `pwd`'}" "${returncode:='False'}"
elif [ "$option_submitted" ] && [ "$option_submitted" = "--ac-test-config" ] ; then
ac_test_config ${name:=""}
elif [ "$option_submitted" ] && [ "$option_submitted" = "--test-dep-find" ] ; then
Expand Down

0 comments on commit 073e43c

Please sign in to comment.