From faadf83599b8640c9235c38a4ab57c7adfb9eb96 Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Wed, 25 Jul 2018 12:32:40 +0200 Subject: 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 --- bootstrap-verify-perf.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bootstrap-verify-perf.sh') 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}; -- cgit 1.2.3-korg