diff options
author | Vratko Polak <vrpolak@cisco.com> | 2018-07-25 12:32:40 +0200 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2018-07-25 12:39:34 +0200 |
commit | faadf83599b8640c9235c38a4ab57c7adfb9eb96 (patch) | |
tree | f137d11b37e07aa76b5a8e731345661e5096f88c /bootstrap-verify-perf.sh | |
parent | 5d6479beed22bb3d14a39e9c130946959c13f03e (diff) |
Fail bootstrap immediately if no topology found
Zero topologies might be found
if testbeds of some type are all unavailable,
or when purposedly restricted Change
is verified with a wrong trigger incantation.
The previous behavior enters an infinite cycle instead.
Change-Id: I9764a79ed4df57c6c99746438431bf1162b7f7ea
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'bootstrap-verify-perf.sh')
-rwxr-xr-x | bootstrap-verify-perf.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap-verify-perf.sh b/bootstrap-verify-perf.sh index b8493893b1..9e1d43ac70 100755 --- a/bootstrap-verify-perf.sh +++ b/bootstrap-verify-perf.sh @@ -110,6 +110,10 @@ virtualenv --system-site-packages env . env/bin/activate pip install -r requirements.txt +if [ -z "${TOPOLOGIES}" ]; then + echo "No applicable topology found!" + exit 1 +fi # We iterate over available topologies and wait until we reserve topology while :; do for TOPOLOGY in ${TOPOLOGIES}; |