Skip to content

Commit

Permalink
Add the auto SLEEP=80 configuration for Azure Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
powerkimhub committed May 17, 2022
1 parent a0e3b9c commit d0cd1ed
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ if [ "$1" = "" ]; then
exit 0;
fi

if [ "${CSP}" = "azure" ]; then
export SLEEP=80
fi

source ../common/setup.env $1
source setup.env $1
Expand Down Expand Up @@ -98,3 +101,7 @@ echo -e "###########################################################"
echo -e "# Finished All Test Cases... "
echo -e "###########################################################"
echo -e "\n\n"

if [ "${CSP}" = "azure" ]; then
unset SLEEP
fi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


CSPLIST=( aws azure gcp alibaba tencent ibm openstack cloudit )
CSPLIST=( aws azure alibaba tencent )
CSPLIST=( aws azure gcp alibaba ibm )

function run() {
num=0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ if [ "$1" = "" ]; then
exit 0;
fi

if [ "${CSP}" = "azure" ]; then
export SLEEP=80
fi

source ../common/setup.env $1
source setup.env $1
Expand Down Expand Up @@ -98,3 +101,7 @@ echo -e "###########################################################"
echo -e "# Finished All Test Cases... "
echo -e "###########################################################"
echo -e "\n\n"

if [ "${CSP}" = "azure" ]; then
unset SLEEP
fi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


CSPLIST=( aws azure gcp alibaba tencent ibm openstack cloudit )
CSPLIST=( aws azure alibaba tencent )
CSPLIST=( aws azure gcp alibaba ibm )

function run() {
num=0
Expand Down

0 comments on commit d0cd1ed

Please sign in to comment.